Don't call hashout_hex on hashout_hex's result
authorJerzy Kozera <jerzy.kozera@gmail.com>
Tue, 2 Apr 2013 23:33:03 +0000 (01:33 +0200)
committerJerzy Kozera <jerzy.kozera@gmail.com>
Tue, 2 Apr 2013 23:33:03 +0000 (01:33 +0200)
tx_hash was already processed by hashout_hex

backends/abe/__init__.py

index e22383b..31d6242 100644 (file)
@@ -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"))