From: ThomasV Date: Sat, 6 Apr 2013 14:15:20 +0000 (+0400) Subject: fix: set is not a list X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=commitdiff_plain;h=2985fab9e0b1d283765abd7a5810cf44b10cb551 fix: set is not a list --- diff --git a/backends/bitcoind/blockchain_processor.py b/backends/bitcoind/blockchain_processor.py index e93439e..32cc4f2 100644 --- a/backends/bitcoind/blockchain_processor.py +++ b/backends/bitcoind/blockchain_processor.py @@ -266,14 +266,14 @@ class BlockchainProcessor(Processor): # sort history, because redeeming transactions are next to the corresponding txout hist.sort(key=lambda tup: tup[2]) - # uniqueness - hist = set(map(lambda x: (x[0], x[2]), hist)) - # add memory pool with self.mempool_lock: for txid in self.mempool_hist.get(addr, []): hist.append((txid, 0, 0)) + # uniqueness + hist = set(map(lambda x: (x[0], x[2]), hist)) + # convert to dict hist = map(lambda x: {'tx_hash': x[0], 'height': x[1]}, hist)