aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
authorKobi Gurkan <kobigurk@gmail.com>2015-04-12 20:17:07 +0800
committerKobi Gurkan <kobigurk@gmail.com>2015-04-21 21:44:08 +0800
commit41b83fe1cd6d49ee68ab44aa87812d716f0e4399 (patch)
treec6a5aefe68a3292ee2798f63c548200795abf82b /rpc
parent4ddbf81e74e90bd476c1bd8c7729581d2affe065 (diff)
downloadgo-tangerine-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.tar
go-tangerine-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.tar.gz
go-tangerine-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.tar.bz2
go-tangerine-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.tar.lz
go-tangerine-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.tar.xz
go-tangerine-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.tar.zst
go-tangerine-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.zip
adds eth_hashrate RPC method
Diffstat (limited to 'rpc')
-rw-r--r--rpc/api.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/rpc/api.go b/rpc/api.go
index 66283752b..8a0d759c1 100644
--- a/rpc/api.go
+++ b/rpc/api.go
@@ -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())