From f9d7066e67af5e4bd9ef6da8b530fc16b84c6c84 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 24 Jan 2014 16:44:29 +0100 Subject: [PATCH] fix --- backends/bitcoind/blockchain_processor.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) 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 -- 1.7.1