diff options
author | SilentCicero <silentcicero@outlook.com> | 2015-06-15 22:07:32 +0800 |
---|---|---|
committer | SilentCicero <silentcicero@outlook.com> | 2015-06-15 22:07:32 +0800 |
commit | d6233c7d2daca8f1c757740e04ba1a8d64588fc0 (patch) | |
tree | 424eeac02e3d19ac9ee1639d547bb4d8e48e0a0e /rpc/api/eth.go | |
parent | f9a0a13fa97a969b23d98c8dddc63bf8047450d3 (diff) | |
download | go-tangerine-d6233c7d2daca8f1c757740e04ba1a8d64588fc0.tar.gz go-tangerine-d6233c7d2daca8f1c757740e04ba1a8d64588fc0.tar.zst go-tangerine-d6233c7d2daca8f1c757740e04ba1a8d64588fc0.zip |
Changed variable names
Diffstat (limited to 'rpc/api/eth.go')
-rw-r--r-- | rpc/api/eth.go | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/rpc/api/eth.go b/rpc/api/eth.go index c5de2cd3b..2857202dd 100644 --- a/rpc/api/eth.go +++ b/rpc/api/eth.go @@ -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 } |