Changed variable names

This commit is contained in:
SilentCicero 2015-06-15 10:07:32 -04:00
parent f9a0a13fa9
commit d6233c7d2d
2 changed files with 2 additions and 8 deletions

View File

@ -175,7 +175,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
v, err := api.xeth().PushTx(args.encodedTx)
v, err := api.xeth().PushTx(args.Data)
if err != nil {
return err
}

View File

@ -255,13 +255,7 @@ func (self *ethApi) PushTx(req *shared.Request) (interface{}, error) {
return nil, shared.NewDecodeParamError(err.Error())
}
// nonce may be nil ("guess" mode)
var nonce string
if args.Nonce != nil {
nonce = args.Nonce.String()
}
v, err := self.xeth.PushTx(args.encodedTx)
v, err := self.xeth.PushTx(args.Data)
if err != nil {
return nil, err
}