diff options
author | SilentCicero <silentcicero@outlook.com> | 2015-06-15 06:07:03 +0800 |
---|---|---|
committer | SilentCicero <silentcicero@outlook.com> | 2015-06-15 06:07:03 +0800 |
commit | f9a0a13fa97a969b23d98c8dddc63bf8047450d3 (patch) | |
tree | bdbf6fd6a82022dda5cd302cf683d094447982aa | |
parent | 6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90 (diff) | |
download | go-tangerine-f9a0a13fa97a969b23d98c8dddc63bf8047450d3.tar go-tangerine-f9a0a13fa97a969b23d98c8dddc63bf8047450d3.tar.gz go-tangerine-f9a0a13fa97a969b23d98c8dddc63bf8047450d3.tar.bz2 go-tangerine-f9a0a13fa97a969b23d98c8dddc63bf8047450d3.tar.lz go-tangerine-f9a0a13fa97a969b23d98c8dddc63bf8047450d3.tar.xz go-tangerine-f9a0a13fa97a969b23d98c8dddc63bf8047450d3.tar.zst go-tangerine-f9a0a13fa97a969b23d98c8dddc63bf8047450d3.zip |
eth_pushTx send raw signed encoded TX data to the chain through RPC
-rw-r--r-- | rpc/api.go | 11 | ||||
-rw-r--r-- | rpc/api/eth.go | 21 | ||||
-rw-r--r-- | rpc/api/utils.go | 1 |
3 files changed, 33 insertions, 0 deletions
diff --git a/rpc/api.go b/rpc/api.go index e35395734..64d27df2e 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -170,6 +170,17 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err } *reply = v + case "eth_pushTx": + args := new(NewSigArgs) + if err := json.Unmarshal(req.Params, &args); err != nil { + return err + } + v, err := api.xeth().PushTx(args.encodedTx) + if err != nil { + return err + } + *reply = v + case "eth_sendTransaction", "eth_transact": args := new(NewTxArgs) if err := json.Unmarshal(req.Params, &args); err != nil { diff --git a/rpc/api/eth.go b/rpc/api/eth.go index a0b9dad86..c5de2cd3b 100644 --- a/rpc/api/eth.go +++ b/rpc/api/eth.go @@ -46,6 +46,7 @@ var ( "eth_getData": (*ethApi).GetData, "eth_getCode": (*ethApi).GetData, "eth_sign": (*ethApi).Sign, + "eth_pushTx": (*ethApi).PushTx, "eth_sendTransaction": (*ethApi).SendTransaction, "eth_transact": (*ethApi).SendTransaction, "eth_estimateGas": (*ethApi).EstimateGas, @@ -247,6 +248,26 @@ func (self *ethApi) Sign(req *shared.Request) (interface{}, error) { return v, nil } + +func (self *ethApi) PushTx(req *shared.Request) (interface{}, error) { + args := new(NewTxArgs) + if err := self.codec.Decode(req.Params, &args); err != nil { + 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) + if err != nil { + return nil, err + } + return v, nil +} + func (self *ethApi) SendTransaction(req *shared.Request) (interface{}, error) { args := new(NewTxArgs) if err := self.codec.Decode(req.Params, &args); err != nil { diff --git a/rpc/api/utils.go b/rpc/api/utils.go index 318d7c39b..13f580f58 100644 --- a/rpc/api/utils.go +++ b/rpc/api/utils.go @@ -51,6 +51,7 @@ var ( "getData", "getCode", "sign", + "pushTx", "sendTransaction", "transact", "estimateGas", |