aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
authorKobi Gurkan <kobigurk@gmail.com>2015-04-21 21:44:02 +0800
committerKobi Gurkan <kobigurk@gmail.com>2015-04-21 21:44:08 +0800
commit9e03c48d438926e177f1ba6e2c51a8068efda57f (patch)
tree0adf35450abad245ca01cc4c4eecdac910f95e7a /rpc
parent63c5c7fb2dab6ec931acf2c0c44728bd2068e1a7 (diff)
downloadgo-tangerine-9e03c48d438926e177f1ba6e2c51a8068efda57f.tar
go-tangerine-9e03c48d438926e177f1ba6e2c51a8068efda57f.tar.gz
go-tangerine-9e03c48d438926e177f1ba6e2c51a8068efda57f.tar.bz2
go-tangerine-9e03c48d438926e177f1ba6e2c51a8068efda57f.tar.lz
go-tangerine-9e03c48d438926e177f1ba6e2c51a8068efda57f.tar.xz
go-tangerine-9e03c48d438926e177f1ba6e2c51a8068efda57f.tar.zst
go-tangerine-9e03c48d438926e177f1ba6e2c51a8068efda57f.zip
move eth_hashrate to ext
Diffstat (limited to 'rpc')
-rw-r--r--rpc/api.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/api.go b/rpc/api.go
index 620509cef..f75ad811d 100644
--- a/rpc/api.go
+++ b/rpc/api.go
@@ -62,8 +62,6 @@ 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 = newHexNum(api.xeth().HashRate())
case "eth_gasPrice":
v := xeth.DefaultGas()
*reply = newHexData(v.Bytes())
@@ -463,6 +461,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
return err
}
*reply = api.xeth().Whisper().Messages(args.Id)
+ case "ext_hashrate":
+ *reply = newHexNum(api.xeth().HashRate())
// case "eth_register":
// // Placeholder for actual type