default values removed

This commit is contained in:
obscuren
2015-01-29 23:17:43 +01:00
parent bd992e7baf
commit 9022f5034f
4 changed files with 25 additions and 17 deletions

View File

@ -334,7 +334,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
}
return p.FilterChanged(args, reply)
case "eth_gasPrice":
*reply = "1000000000000000"
*reply = "10000000000000"
return nil
case "web3_sha3":
args, err := req.ToSha3Args()