From f9a0a13fa97a969b23d98c8dddc63bf8047450d3 Mon Sep 17 00:00:00 2001 From: SilentCicero Date: Sun, 14 Jun 2015 18:07:03 -0400 Subject: eth_pushTx send raw signed encoded TX data to the chain through RPC --- rpc/api.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'rpc/api.go') 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 { -- cgit v1.2.3