diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-07-06 21:59:36 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-07 17:30:23 +0800 |
commit | 7e6c1f8024d0cc0f381c615cab3c97b57fc9515e (patch) | |
tree | e9eee95bdf3a6ca55b39328d7dc2a32d18a8e31e /rpc/api/eth_js.go | |
parent | ceb0739ba111215d47cc2ff9d80d542fa26d764a (diff) | |
download | dexon-7e6c1f8024d0cc0f381c615cab3c97b57fc9515e.tar dexon-7e6c1f8024d0cc0f381c615cab3c97b57fc9515e.tar.gz dexon-7e6c1f8024d0cc0f381c615cab3c97b57fc9515e.tar.bz2 dexon-7e6c1f8024d0cc0f381c615cab3c97b57fc9515e.tar.lz dexon-7e6c1f8024d0cc0f381c615cab3c97b57fc9515e.tar.xz dexon-7e6c1f8024d0cc0f381c615cab3c97b57fc9515e.tar.zst dexon-7e6c1f8024d0cc0f381c615cab3c97b57fc9515e.zip |
corrected input formatters as suggested during review
Diffstat (limited to 'rpc/api/eth_js.go')
-rw-r--r-- | rpc/api/eth_js.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api/eth_js.go b/rpc/api/eth_js.go index 4c3e9e4db..400eb8e89 100644 --- a/rpc/api/eth_js.go +++ b/rpc/api/eth_js.go @@ -18,7 +18,7 @@ web3._extend({ name: 'resend', call: 'eth_resend', params: 3, - inputFormatter: [null, null, null] + inputFormatter: [web3._extend.formatters.inputTransactionFormatter, web3._extend.utils.fromDecimal, web3._extend.utils.fromDecimal] }) ], properties: |