Commit 9e03c48d authored by Kobi Gurkan's avatar Kobi Gurkan

move eth_hashrate to ext

parent 63c5c7fb
...@@ -62,8 +62,6 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err ...@@ -62,8 +62,6 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
*reply = newHexData(api.xeth().Coinbase()) *reply = newHexData(api.xeth().Coinbase())
case "eth_mining": case "eth_mining":
*reply = api.xeth().IsMining() *reply = api.xeth().IsMining()
case "eth_hashrate":
*reply = newHexNum(api.xeth().HashRate())
case "eth_gasPrice": case "eth_gasPrice":
v := xeth.DefaultGas() v := xeth.DefaultGas()
*reply = newHexData(v.Bytes()) *reply = newHexData(v.Bytes())
...@@ -463,6 +461,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err ...@@ -463,6 +461,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
return err return err
} }
*reply = api.xeth().Whisper().Messages(args.Id) *reply = api.xeth().Whisper().Messages(args.Id)
case "ext_hashrate":
*reply = newHexNum(api.xeth().HashRate())
// case "eth_register": // case "eth_register":
// // Placeholder for actual type // // Placeholder for actual type
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment