adds eth_hashrate RPC method

This commit is contained in:
Kobi Gurkan
2015-04-12 15:17:07 +03:00
parent 4ddbf81e74
commit 41b83fe1cd
3 changed files with 7 additions and 0 deletions

View File

@ -62,6 +62,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
*reply = newHexData(api.xeth().Coinbase())
case "eth_mining":
*reply = api.xeth().IsMining()
case "eth_hashrate":
*reply = api.xeth().HashRate()
case "eth_gasPrice":
v := xeth.DefaultGas()
*reply = newHexData(v.Bytes())