Merge pull request #25 from jkozera/patch-1
authorThomasV <thomasv1@gmx.de>
Mon, 15 Apr 2013 13:49:42 +0000 (06:49 -0700)
committerThomasV <thomasv1@gmx.de>
Mon, 15 Apr 2013 13:49:42 +0000 (06:49 -0700)
Don't call hashout_hex on hashout_hex's result

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"))