good morning!!!!

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

Merge branch 'develop' of https://github.com/kobigurk/go-ethereum into kobigurk-develop

parents 182d484a 9e03c48d
No related branches found
No related tags found
No related merge requests found
......@@ -343,6 +343,7 @@ func (s *Ethereum) Etherbase() (eb common.Address, err error) {
func (s *Ethereum) StopMining() { s.miner.Stop() }
func (s *Ethereum) IsMining() bool { return s.miner.Mining() }
func (s *Ethereum) HashRate() int64 { return s.miner.HashRate() }
func (s *Ethereum) Miner() *miner.Miner { return s.miner }
// func (s *Ethereum) Logger() logger.LogSystem { return s.logger }
......
......@@ -465,6 +465,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
......
......@@ -280,6 +280,10 @@ func (self *XEth) IsMining() bool {
return self.backend.IsMining()
}
func (self *XEth) HashRate() int64 {
return self.backend.HashRate()
}
func (self *XEth) EthVersion() string {
return fmt.Sprintf("%d", self.backend.EthVersion())
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment