commit b1a1736116c18fe9970d8787bf1a49748b834b60 parent f51e9a370acc6ecd905750bf95f1f5c5bc537ff7 Author: ThomasV <thomasv@gitorious> Date: Wed, 9 Nov 2011 17:24:07 +0100 fix Diffstat:
M | client/electrum.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/client/electrum.py b/client/electrum.py @@ -144,7 +144,7 @@ def ASecretToSecret(key): def int_to_hex(i, length=1): - s = hex(i)[2:] + s = hex(i)[2:].rstrip('L') s = "0"*(2*length - len(s)) + s return s.decode('hex')[::-1].encode('hex')