diff options
Diffstat (limited to 'rpc/api.go')
-rw-r--r-- | rpc/api.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rpc/api.go b/rpc/api.go index 8cc86103b..ee2a6a047 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -194,6 +194,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err case "eth_getTransactionByHash": args := new(HashArgs) if err := json.Unmarshal(req.Params, &args); err != nil { + return err } tx, bhash, bnum, txi := api.xeth().EthTransactionByHash(args.Hash) if tx != nil { |