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

This commit is contained in:
obscuren
2015-04-28 11:10:44 +02:00
3 changed files with 7 additions and 0 deletions

View File

@ -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())
}