disabled btc

This commit is contained in:
Kevin Froman 2018-03-03 20:28:17 -06:00
parent 0fd9c3f6ab
commit 9229fd9984
No known key found for this signature in database
GPG key ID: 0D414D0FE405B63B
2 changed files with 12 additions and 8 deletions

View file

@ -30,12 +30,12 @@ class POW:
hbCount = 0
blockCheck = 300000 # How often the hasher should check if the bitcoin block is updated (slows hashing but prevents less wasted work)
blockCheckCount = 0
block = self.bitcoinNode.getBlockHash(self.bitcoinNode.getLastBlockHeight())
block = ''#self.bitcoinNode.getBlockHash(self.bitcoinNode.getLastBlockHeight())
while self.hashing:
if blockCheckCount == blockCheck:
if self.reporting:
logger.debug('Refreshing Bitcoin block')
block = self.bitcoinNode.getBlockHash(self.bitcoinNode.getLastBlockHeight())
block = ''#self.bitcoinNode.getBlockHash(self.bitcoinNode.getLastBlockHeight())
blockCheckCount = 0
blockCheckCount += 1
hbCount += 1