diff options
author | Kobi Gurkan <kobigurk@gmail.com> | 2016-10-07 06:38:00 +0800 |
---|---|---|
committer | Kobi Gurkan <kobigurk@gmail.com> | 2016-10-10 17:57:15 +0800 |
commit | 1a6682c21d812fa2bd068d174d38978664814633 (patch) | |
tree | 030867a6ac0d0eb446c567f481269c68fa4c0ccf /internal/web3ext/web3ext.go | |
parent | c88e4357240d8c92d7866cb805781b792e166ec2 (diff) | |
download | dexon-1a6682c21d812fa2bd068d174d38978664814633.tar.gz dexon-1a6682c21d812fa2bd068d174d38978664814633.tar.zst dexon-1a6682c21d812fa2bd068d174d38978664814633.zip |
internal/ethapi, internal/web3ext: adds raw tx retrieval methods
Diffstat (limited to 'internal/web3ext/web3ext.go')
-rw-r--r-- | internal/web3ext/web3ext.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index 04b13e483..cbbab0ece 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -468,6 +468,19 @@ web3._extend({ call: 'eth_submitTransaction', params: 1, inputFormatter: [web3._extend.formatters.inputTransactionFormatter] + }), + new web3._extend.Method({ + name: 'getRawTransaction', + call: 'eth_getRawTransactionByHash', + params: 1 + }), + new web3._extend.Method({ + name: 'getRawTransactionFromBlock', + call: function(args) { + return (web3._extend.utils.isString(args[0]) && args[0].indexOf('0x') === 0) ? 'eth_getRawTransactionByBlockHashAndIndex' : 'eth_getRawTransactionByBlockNumberAndIndex'; + }, + params: 2, + inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter, web3._extend.utils.toHex] }) ], properties: |