diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-29 04:27:50 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-29 04:27:50 +0800 |
commit | 29930da52272b8fd644c38cc303ba6aa66e49182 (patch) | |
tree | f61943b5c00c650df50e0c514512f0f974fe500b /rpc | |
parent | 3b20603eb1373cab402babd1d3878a96fe7de5a7 (diff) | |
download | go-tangerine-29930da52272b8fd644c38cc303ba6aa66e49182.tar.gz go-tangerine-29930da52272b8fd644c38cc303ba6aa66e49182.tar.zst go-tangerine-29930da52272b8fd644c38cc303ba6aa66e49182.zip |
eth_getStorageAt output hex should begin with 0x
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api.go b/rpc/api.go index 78e464c99..05c264b6f 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -99,7 +99,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err state := api.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address) value := state.StorageString(args.Key) - *reply = common.Bytes2Hex(value.Bytes()) + *reply = common.ToHex(value.Bytes()) case "eth_getTransactionCount": args := new(GetTxCountArgs) if err := json.Unmarshal(req.Params, &args); err != nil { |