From 41b83fe1cd6d49ee68ab44aa87812d716f0e4399 Mon Sep 17 00:00:00 2001 From: Kobi Gurkan Date: Sun, 12 Apr 2015 15:17:07 +0300 Subject: adds eth_hashrate RPC method --- rpc/api.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rpc') 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()) -- cgit v1.2.3 From 63c5c7fb2dab6ec931acf2c0c44728bd2068e1a7 Mon Sep 17 00:00:00 2001 From: Kobi Gurkan Date: Sun, 12 Apr 2015 22:04:08 +0300 Subject: uses newHexNum for eth_hashrate --- rpc/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rpc') diff --git a/rpc/api.go b/rpc/api.go index 8a0d759c1..620509cef 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -63,7 +63,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err case "eth_mining": *reply = api.xeth().IsMining() case "eth_hashrate": - *reply = api.xeth().HashRate() + *reply = newHexNum(api.xeth().HashRate()) case "eth_gasPrice": v := xeth.DefaultGas() *reply = newHexData(v.Bytes()) -- cgit v1.2.3 From 9e03c48d438926e177f1ba6e2c51a8068efda57f Mon Sep 17 00:00:00 2001 From: Kobi Gurkan Date: Tue, 21 Apr 2015 16:44:02 +0300 Subject: move eth_hashrate to ext --- rpc/api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rpc') 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 -- cgit v1.2.3