From: ThomasV Date: Mon, 15 Apr 2013 13:49:42 +0000 (-0700) Subject: Merge pull request #25 from jkozera/patch-1 X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=commitdiff_plain;h=c88954ab292b54cea9f76a2aa2f5bfaf1356739a;hp=01cb32dffec6737903d69e31c401b36788723597 Merge pull request #25 from jkozera/patch-1 Don't call hashout_hex on hashout_hex's result --- 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"))