Browse Source

Merge pull request #3737 from SomberNight/fix_sweep_into_same_wallet

fix: sweeping into same wallet
master
ThomasV 8 years ago committed by GitHub
parent
commit
c32435c15e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      lib/wallet.py

1
lib/wallet.py

@ -1040,6 +1040,7 @@ class Abstract_Wallet(PrintError):
if fixed_fee is None and config.fee_per_kb() is None: if fixed_fee is None and config.fee_per_kb() is None:
raise NoDynamicFeeEstimates() raise NoDynamicFeeEstimates()
if not is_sweep:
for item in inputs: for item in inputs:
self.add_input_info(item) self.add_input_info(item)

Loading…
Cancel
Save