fix bug with change addresses

This commit is contained in:
ThomasV 2016-08-27 22:24:41 +02:00
parent 49a5994b29
commit ab53ee27f1
1 changed files with 1 additions and 1 deletions

View File

@ -822,7 +822,7 @@ class Abstract_Wallet(PrintError):
if not change_addrs:
change_addrs = [random.choice(addrs)]
else:
change_addrs = [address]
change_addrs = [coins[0]['address']]
# Fee estimator
if fixed_fee is None: