eth_sign added to API for signing arbitrary data.

This commit is contained in:
Daniel A. Nagy
2015-05-08 16:36:13 +02:00
parent e94aa421c6
commit a487396b76
2 changed files with 8 additions and 8 deletions

View File

@ -163,7 +163,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
v, err := api.xeth.Sign(args.From, args.Data)
v, err := api.xeth().Sign(args.From, args.Data, false)
if err != nil {
return err
}