1
0

fix: disabling "use change addresses" did not work correctly

This commit is contained in:
SomberNight
2018-02-18 20:13:27 +01:00
parent c4d31674ab
commit 72a443b688
2 changed files with 10 additions and 2 deletions

View File

@@ -1123,7 +1123,8 @@ class Abstract_Wallet(PrintError):
if not change_addrs:
change_addrs = [random.choice(addrs)]
else:
change_addrs = [inputs[0]['address']]
# coin_chooser will set change address
change_addrs = []
# Fee estimator
if fixed_fee is None: