eth_pushTx send raw signed encoded TX data to the chain through RPC

This commit is contained in:
SilentCicero
2015-06-14 18:07:03 -04:00
parent 6f5c6150b7
commit f9a0a13fa9
3 changed files with 33 additions and 0 deletions

View File

@ -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 {