New DataArgs and eth_sendRawTransaction

This commit is contained in:
SilentCicero
2015-06-16 12:28:10 -04:00
parent e952bb65e7
commit 7ec8c257ff
5 changed files with 64 additions and 3 deletions

View File

@ -171,7 +171,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
*reply = v
case "eth_sendRawTransaction":
args := new(NewSigArgs)
args := new(NewDataArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}