diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-28 17:16:03 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-28 17:16:03 +0800 |
commit | 459d8987050e85fcae23d169453fc4d7f185eefc (patch) | |
tree | 89a6632020c96d1908bbd57ee0df1fb99b2eeee2 /xeth | |
parent | 46f63ef04f326a9c792c4f9f055e90100a3528f7 (diff) | |
download | dexon-459d8987050e85fcae23d169453fc4d7f185eefc.tar.gz dexon-459d8987050e85fcae23d169453fc4d7f185eefc.tar.zst dexon-459d8987050e85fcae23d169453fc4d7f185eefc.zip |
eth, rpc, xeth: ext_hanhrate => eth_hashrate
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/xeth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index 71c39fd42..710fec5c5 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -281,7 +281,7 @@ func (self *XEth) IsMining() bool { } func (self *XEth) HashRate() int64 { - return self.backend.HashRate() + return self.backend.Miner().HashRate() } func (self *XEth) EthVersion() string { |