From: Jerzy Kozera Date: Tue, 2 Apr 2013 23:33:03 +0000 (+0200) Subject: Don't call hashout_hex on hashout_hex's result X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=commitdiff_plain;h=bb7ca8f17bdcec6cc0102afa181097a25ebb879c Don't call hashout_hex on hashout_hex's result tx_hash was already processed by hashout_hex --- 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"))