diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-11 03:28:20 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-11 03:28:20 +0800 |
commit | ce595b9266d658a5eae626d78aec7f47c04222ca (patch) | |
tree | aca528b9e907b97d5da56aeef7a4788fabf54b17 /rpc | |
parent | 35841e51901149a496645b3c3c6be4ec7a58e6c6 (diff) | |
download | dexon-ce595b9266d658a5eae626d78aec7f47c04222ca.tar.gz dexon-ce595b9266d658a5eae626d78aec7f47c04222ca.tar.zst dexon-ce595b9266d658a5eae626d78aec7f47c04222ca.zip |
fallback
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api.go b/rpc/api.go index 511b819c1..38f02a473 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -556,7 +556,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error return err } return p.GetData(args, reply) - case "eth_sendTransaction": + case "eth_sendTransaction", "eth_transact": args := new(NewTxArgs) if err := json.Unmarshal(req.Params, &args); err != nil { return err |