aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 08:26:09 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 08:26:09 +0800
commit7e6c8a411d73f1406ec12d6a75225a2a60fdfa45 (patch)
tree85d86efa2716b7d230e12f8aaec36f004cb22cd3 /rpc/api.go
parent22546dcb5528109de910e722cfc1afd5446eb3eb (diff)
downloadgo-tangerine-7e6c8a411d73f1406ec12d6a75225a2a60fdfa45.tar
go-tangerine-7e6c8a411d73f1406ec12d6a75225a2a60fdfa45.tar.gz
go-tangerine-7e6c8a411d73f1406ec12d6a75225a2a60fdfa45.tar.bz2
go-tangerine-7e6c8a411d73f1406ec12d6a75225a2a60fdfa45.tar.lz
go-tangerine-7e6c8a411d73f1406ec12d6a75225a2a60fdfa45.tar.xz
go-tangerine-7e6c8a411d73f1406ec12d6a75225a2a60fdfa45.tar.zst
go-tangerine-7e6c8a411d73f1406ec12d6a75225a2a60fdfa45.zip
fixes
Diffstat (limited to 'rpc/api.go')
-rw-r--r--rpc/api.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/api.go b/rpc/api.go
index cd34934cf..fcab90f3b 100644
--- a/rpc/api.go
+++ b/rpc/api.go
@@ -547,7 +547,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
args := new(HashIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
}
- tx := p.xeth().EthTransactionByHash(hash)
+ tx := p.xeth().EthTransactionByHash(args.Hash)
if tx != nil {
*reply = NewTransactionRes(tx)
}
@@ -736,7 +736,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
- *reply = p.xeth().Whisper().Messages(id)
+ *reply = p.xeth().Whisper().Messages(args.Id)
// case "eth_register":
// args, err := req.ToRegisterArgs()
// if err != nil {