good morning!!!!

Skip to content
Snippets Groups Projects
Commit 545ff1e3 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Merge pull request #728 from tgerring/issue727

Fix RPC Call output when empty
parents 2c2ddcbf 6388767d
No related branches found
No related tags found
No related merge requests found
......@@ -182,8 +182,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
if err != nil {
return err
}
*reply = v
// TODO unwrap the parent method's ToHex call
*reply = newHexData(common.FromHex(v))
case "eth_flush":
return NewNotImplementedError(req.Method)
case "eth_getBlockByHash":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment