diff options
author | Kobi Gurkan <kobigurk@gmail.com> | 2015-04-12 20:17:07 +0800 |
---|---|---|
committer | Kobi Gurkan <kobigurk@gmail.com> | 2015-04-21 21:44:08 +0800 |
commit | 41b83fe1cd6d49ee68ab44aa87812d716f0e4399 (patch) | |
tree | c6a5aefe68a3292ee2798f63c548200795abf82b /xeth | |
parent | 4ddbf81e74e90bd476c1bd8c7729581d2affe065 (diff) | |
download | dexon-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.tar.gz dexon-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.tar.zst dexon-41b83fe1cd6d49ee68ab44aa87812d716f0e4399.zip |
adds eth_hashrate RPC method
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/xeth.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index afcb33e4c..e221f6d20 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -276,6 +276,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()) } |