X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=backends%2Fbitcoind%2Fblockchain_processor.py;h=7fe02fcb926615179b16a0f2a96cf8a08e6ec112;hb=15e1acec17204605246aabdf689ac692650747fe;hp=67cfba8b4aa1b33248fd9d0d9e39bdf781b7c770;hpb=73b4281ad0239629d99cb8705aea1172d0692787;p=electrum-server.git diff --git a/backends/bitcoind/blockchain_processor.py b/backends/bitcoind/blockchain_processor.py index 67cfba8..7fe02fc 100644 --- a/backends/bitcoind/blockchain_processor.py +++ b/backends/bitcoind/blockchain_processor.py @@ -551,7 +551,7 @@ class BlockchainProcessor(Processor): address = params[1] if password == self.config.get('server', 'password'): self.watched_addresses.remove(address) - print_log('unsubscribed', address) + # print_log('unsubscribed', address) result = "ok" else: print_log('incorrect password') @@ -744,8 +744,8 @@ class BlockchainProcessor(Processor): def invalidate_cache(self, address): with self.cache_lock: - if 'address' in self.history_cache: - print_log("cache: invalidating", address) + if address in self.history_cache: + # print_log("cache: invalidating", address) self.history_cache.pop(address) if address in self.watched_addresses: