diff options
author | Martin Holst Swende <martin@swende.se> | 2018-10-15 18:28:44 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-12-10 18:33:50 +0800 |
commit | 42a914a84ffcc5d123af400c2cbcd34b05e2b0b3 (patch) | |
tree | 268f1b8388608016babcc11c84a37d22638f33c5 /internal | |
parent | 09d588e0da77c1ed150d7274f66a67dcaecab80c (diff) | |
download | dexon-42a914a84ffcc5d123af400c2cbcd34b05e2b0b3.tar.gz dexon-42a914a84ffcc5d123af400c2cbcd34b05e2b0b3.tar.zst dexon-42a914a84ffcc5d123af400c2cbcd34b05e2b0b3.zip |
cmd/evm, core/vm, eth: implement api methods to do stdjson dump to local filesystem
Diffstat (limited to 'internal')
-rw-r--r-- | internal/web3ext/web3ext.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index a5f319653..f36835d8a 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -385,6 +385,16 @@ web3._extend({ inputFormatter: [null] }), new web3._extend.Method({ + name: 'standardTraceBadBlockToFile', + call: 'debug_standardTraceBadBlockToFile', + params: 2, + }), + new web3._extend.Method({ + name: 'standardTraceBlockToFile', + call: 'debug_standardTraceBlockToFile', + params: 2, + }), + new web3._extend.Method({ name: 'traceBlockByNumber', call: 'debug_traceBlockByNumber', params: 2, |