fixed saving receipts

This commit is contained in:
zsfelfoldi
2015-05-26 14:17:43 +02:00
parent 6f5c6150b7
commit 3f94d09c1f
6 changed files with 144 additions and 54 deletions

View File

@ -59,7 +59,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
case "eth_mining":
*reply = api.xeth().IsMining()
case "eth_gasPrice":
v := xeth.DefaultGasPrice()
v := api.xeth().DefaultGasPrice()
*reply = newHexNum(v.Bytes())
case "eth_accounts":
*reply = api.xeth().Accounts()