diff options
author | obscuren <geffobscura@gmail.com> | 2015-05-12 21:02:44 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-05-12 21:02:44 +0800 |
commit | 260536a729337e47646d6d72d19d2095b6d71f4c (patch) | |
tree | 8997f0189756bf0fb80a7ecdc3997baa0e9c4c9e /rpc | |
parent | 66de3f0aa849849c5cf5ad84265f3f3ce8ca5282 (diff) | |
download | dexon-260536a729337e47646d6d72d19d2095b6d71f4c.tar dexon-260536a729337e47646d6d72d19d2095b6d71f4c.tar.gz dexon-260536a729337e47646d6d72d19d2095b6d71f4c.tar.bz2 dexon-260536a729337e47646d6d72d19d2095b6d71f4c.tar.lz dexon-260536a729337e47646d6d72d19d2095b6d71f4c.tar.xz dexon-260536a729337e47646d6d72d19d2095b6d71f4c.tar.zst dexon-260536a729337e47646d6d72d19d2095b6d71f4c.zip |
rpc: hexData => hexNum
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/api.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/api.go b/rpc/api.go index 774d26ea2..066c81222 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -194,9 +194,9 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err // TODO unwrap the parent method's ToHex call if len(gas) == 0 { - *reply = newHexData([]byte{}) + *reply = newHexNum(0) } else { - *reply = newHexData(gas) + *reply = newHexNum(gas) } case "eth_call": v, _, err := api.doCall(req.Params) |