From 2985fab9e0b1d283765abd7a5810cf44b10cb551 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 6 Apr 2013 18:15:20 +0400 Subject: [PATCH] fix: set is not a list --- backends/bitcoind/blockchain_processor.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) 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) -- 1.7.1