aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-11 23:25:15 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-11 23:25:15 +0800
commitd465e410eff0ab255d0e427a8cf2f37ac10311da (patch)
treee1b3abee95b1a1ba172e044b87db55069f1e54af /rpc/api.go
parent6bca40274f2056b8516543d8cc1600224789b77f (diff)
downloadgo-tangerine-d465e410eff0ab255d0e427a8cf2f37ac10311da.tar
go-tangerine-d465e410eff0ab255d0e427a8cf2f37ac10311da.tar.gz
go-tangerine-d465e410eff0ab255d0e427a8cf2f37ac10311da.tar.bz2
go-tangerine-d465e410eff0ab255d0e427a8cf2f37ac10311da.tar.lz
go-tangerine-d465e410eff0ab255d0e427a8cf2f37ac10311da.tar.xz
go-tangerine-d465e410eff0ab255d0e427a8cf2f37ac10311da.tar.zst
go-tangerine-d465e410eff0ab255d0e427a8cf2f37ac10311da.zip
TxIndex -> Index
Diffstat (limited to 'rpc/api.go')
-rw-r--r--rpc/api.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/rpc/api.go b/rpc/api.go
index f552b3ef3..335f6cabd 100644
--- a/rpc/api.go
+++ b/rpc/api.go
@@ -608,10 +608,10 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
if err != nil {
return err
}
- if args.TxIndex > int64(len(v.Transactions)) || args.TxIndex < 0 {
+ if args.Index > int64(len(v.Transactions)) || args.Index < 0 {
return NewErrorWithMessage(errDecodeArgs, "Transaction index does not exist")
}
- *reply = v.Transactions[args.TxIndex]
+ *reply = v.Transactions[args.Index]
case "eth_getTransactionByBlockNumberAndIndex":
args := new(BlockNumIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
@@ -622,10 +622,10 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
if err != nil {
return err
}
- if args.TxIndex > int64(len(v.Transactions)) || args.TxIndex < 0 {
+ if args.Index > int64(len(v.Transactions)) || args.Index < 0 {
return NewErrorWithMessage(errDecodeArgs, "Transaction index does not exist")
}
- *reply = v.Transactions[args.TxIndex]
+ *reply = v.Transactions[args.Index]
case "eth_getUncleByBlockHashAndIndex":
case "eth_getUncleByBlockNumberAndIndex":
return errNotImplemented