commit 33031f387c291b0423d27beca0992a63fac8398e
parent bed6e938a3990d89ae4d822966c3eb5e327634e5
Author: thomasv <thomasv@gitorious>
Date: Fri, 7 Dec 2012 14:52:55 +0100
fix: misplaced repr
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -777,9 +777,9 @@ class Wallet:
outputs = self.add_tx_change(outputs, amount, fee, total, change_addr)
if not self.seed:
- return {'inputs':inputs, 'outputs':outputs}
+ return repr({'inputs':inputs, 'outputs':outputs})
- tx = repr(self.signed_tx(inputs, outputs, password))
+ tx = self.signed_tx(inputs, outputs, password)
for address, x in outputs:
if address not in self.addressbook and not self.is_mine(address):