From bb7ca8f17bdcec6cc0102afa181097a25ebb879c Mon Sep 17 00:00:00 2001 From: Jerzy Kozera Date: Wed, 3 Apr 2013 01:33:03 +0200 Subject: [PATCH] Don't call hashout_hex on hashout_hex's result tx_hash was already processed by hashout_hex --- backends/abe/__init__.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/backends/abe/__init__.py b/backends/abe/__init__.py index e22383b..31d6242 100644 --- a/backends/abe/__init__.py +++ b/backends/abe/__init__.py @@ -290,7 +290,7 @@ class AbeStore(DataStore.DataStore): "index": int(pos), "value": int(value), }) - known_tx.append(self.hashout_hex(tx_hash)) + known_tx.append(tx_hash) # todo: sort them really... txpoints = sorted(txpoints, key=operator.itemgetter("timestamp")) -- 1.7.1