From: ThomasV Date: Fri, 24 Jan 2014 15:44:29 +0000 (+0100) Subject: fix X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=commitdiff_plain;h=f9d7066e67af5e4bd9ef6da8b530fc16b84c6c84 fix --- diff --git a/backends/bitcoind/blockchain_processor.py b/backends/bitcoind/blockchain_processor.py index 1de5db6..37778b0 100644 --- a/backends/bitcoind/blockchain_processor.py +++ b/backends/bitcoind/blockchain_processor.py @@ -640,8 +640,9 @@ class BlockchainProcessor(Processor): self.mtimes['import'] = 0 if prh: - if prh != self.storage.get_root_hash().encode('hex'): - print_log("root hash error", prh) + rh = self.storage.get_root_hash().encode('hex') + if prh != rh: + print_log("root hash error", prh, rh) self.shared.stop() raise prh = None