fix #2096 (variable name)

This commit is contained in:
ThomasV 2017-01-04 18:08:58 +01:00
parent 63cff71f91
commit 1e24dbd94b
1 changed files with 2 additions and 2 deletions

View File

@ -816,7 +816,7 @@ class Abstract_Wallet(PrintError):
raise BaseException("More than one output set to spend max")
i_max = i
# Avoid index-out-of-range with coins[0] below
# Avoid index-out-of-range with inputs[0] below
if not inputs:
raise NotEnoughFunds()
@ -837,7 +837,7 @@ class Abstract_Wallet(PrintError):
if not change_addrs:
change_addrs = [random.choice(addrs)]
else:
change_addrs = [coins[0]['address']]
change_addrs = [inputs[0]['address']]
# Fee estimator
if fixed_fee is None: