mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 23:41:35 +00:00
fix bug with change addresses
This commit is contained in:
parent
49a5994b29
commit
ab53ee27f1
1 changed files with 1 additions and 1 deletions
|
@ -822,7 +822,7 @@ class Abstract_Wallet(PrintError):
|
||||||
if not change_addrs:
|
if not change_addrs:
|
||||||
change_addrs = [random.choice(addrs)]
|
change_addrs = [random.choice(addrs)]
|
||||||
else:
|
else:
|
||||||
change_addrs = [address]
|
change_addrs = [coins[0]['address']]
|
||||||
|
|
||||||
# Fee estimator
|
# Fee estimator
|
||||||
if fixed_fee is None:
|
if fixed_fee is None:
|
||||||
|
|
Loading…
Add table
Reference in a new issue