Commit bac455c0 authored by obscuren's avatar obscuren

Merge branch 'kobigurk-develop' into develop

parents 182d484a 459d8987
......@@ -465,6 +465,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
return err
}
*reply = api.xeth().Whisper().Messages(args.Id)
case "eth_hashrate":
*reply = newHexNum(api.xeth().HashRate())
// case "eth_register":
// // Placeholder for actual type
......
......@@ -280,6 +280,10 @@ func (self *XEth) IsMining() bool {
return self.backend.IsMining()
}
func (self *XEth) HashRate() int64 {
return self.backend.Miner().HashRate()
}
func (self *XEth) EthVersion() string {
return fmt.Sprintf("%d", self.backend.EthVersion())
}
......
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