Browse Source

fix bug: to_address -> address

283
thomasv 12 years ago
parent
commit
639ef7119d
  1. 2
      lib/wallet.py

2
lib/wallet.py

@ -783,7 +783,7 @@ class Wallet:
for address, x in outputs:
if address not in self.addressbook and not self.is_mine(address):
self.addressbook.append(to_address)
self.addressbook.append(address)
if label:
tx_hash = Hash(tx.decode('hex') )[::-1].encode('hex')

Loading…
Cancel
Save