good morning!!!!

Skip to content
Snippets Groups Projects
Commit bac455c0 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Merge branch 'kobigurk-develop' into develop

parents 182d484a 459d8987
No related branches found
No related tags found
No related merge requests found
...@@ -465,6 +465,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err ...@@ -465,6 +465,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 "eth_hashrate":
*reply = newHexNum(api.xeth().HashRate())
// case "eth_register": // case "eth_register":
// // Placeholder for actual type // // Placeholder for actual type
......
...@@ -280,6 +280,10 @@ func (self *XEth) IsMining() bool { ...@@ -280,6 +280,10 @@ func (self *XEth) IsMining() bool {
return self.backend.IsMining() return self.backend.IsMining()
} }
func (self *XEth) HashRate() int64 {
return self.backend.Miner().HashRate()
}
func (self *XEth) EthVersion() string { func (self *XEth) EthVersion() string {
return fmt.Sprintf("%d", self.backend.EthVersion()) return fmt.Sprintf("%d", self.backend.EthVersion())
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment