diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-03 16:34:52 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-02-03 16:34:52 +0800 |
commit | a8fd0de0d344ce3828901fa47204a68971184684 (patch) | |
tree | 9e684d86355e0418f3b5c055bbf3c2e22437a2c4 /rpc | |
parent | 2e2f093ec2315da670f3300954975d9136fe76af (diff) | |
parent | 15780ead07e650e829a5756857fdbb4e2871356a (diff) | |
download | dexon-a8fd0de0d344ce3828901fa47204a68971184684.tar.gz dexon-a8fd0de0d344ce3828901fa47204a68971184684.tar.zst dexon-a8fd0de0d344ce3828901fa47204a68971184684.zip |
Merge pull request #2156 from ppratscher/add_replay_tx
core/vm, rpc/api: added debug_replayTransaction RPC call
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/javascript.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rpc/javascript.go b/rpc/javascript.go index c145163e5..4c0ac5354 100644 --- a/rpc/javascript.go +++ b/rpc/javascript.go @@ -407,6 +407,11 @@ web3._extend({ call: 'debug_writeMemProfile', params: 1 }), + new web3._extend.Method({ + name: 'replayTransaction', + call: 'debug_replayTransaction', + params: 4 + }) ], properties: [ |