diff options
author | Felix Lange <fjl@twurst.com> | 2017-04-19 18:09:04 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2017-04-25 08:14:32 +0800 |
commit | 207bd7d2cddbf16ac2cb870fd6a1c558f02fd8ac (patch) | |
tree | 76f8494516a78869b98804bbaa34fc10240adbdf /internal | |
parent | 4047ccad2fb73fd2cfd69bf5b8cbfa788871ce0f (diff) | |
download | go-tangerine-207bd7d2cddbf16ac2cb870fd6a1c558f02fd8ac.tar go-tangerine-207bd7d2cddbf16ac2cb870fd6a1c558f02fd8ac.tar.gz go-tangerine-207bd7d2cddbf16ac2cb870fd6a1c558f02fd8ac.tar.bz2 go-tangerine-207bd7d2cddbf16ac2cb870fd6a1c558f02fd8ac.tar.lz go-tangerine-207bd7d2cddbf16ac2cb870fd6a1c558f02fd8ac.tar.xz go-tangerine-207bd7d2cddbf16ac2cb870fd6a1c558f02fd8ac.tar.zst go-tangerine-207bd7d2cddbf16ac2cb870fd6a1c558f02fd8ac.zip |
eth: add debug_storageRangeAt
Diffstat (limited to 'internal')
-rw-r--r-- | internal/web3ext/web3ext.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index 72c2bd996..c9cac125d 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -345,6 +345,11 @@ web3._extend({ call: 'debug_getBadBlocks', params: 0, }), + new web3._extend.Method({ + name: 'storageRangeAt', + call: 'debug_storageRangeAt', + params: 5, + }), ], properties: [] }); |