Use HashArgs for eth_getTransactionByHash

This commit is contained in:
Taylor Gerring 2015-04-02 14:37:11 +02:00
parent b4eef59b6f
commit b9c9d6d798
1 changed files with 1 additions and 2 deletions

View File

@ -192,8 +192,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
*reply = br
case "eth_getTransactionByHash":
// HashIndexArgs used, but only the "Hash" part we need.
args := new(HashIndexArgs)
args := new(HashArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
}
tx, bhash, bnum, txi := api.xeth().EthTransactionByHash(args.Hash)