-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(evm): debug_traceCall method implemented (#2022)
* feat(evm): debug_traceCall method implemented * chore: cleanup * chore: changelog update * test(evm): added api backend test for debug_traceCall
- Loading branch information
1 parent
e2bc002
commit b1aac01
Showing
14 changed files
with
769 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Mocks Generation | ||
|
||
To generate mocks, install `mockery` tool: | ||
https://vektra.github.io/mockery/latest/installation/ | ||
|
||
```bash | ||
cd x/evm | ||
mockery \ | ||
--name QueryClient \ | ||
--filename evm_query_client.go \ | ||
--output ../../eth/rpc/backend/mocks \ | ||
--structname EVMQueryClient | ||
``` |
Oops, something went wrong.