1
0

Merge pull request #3500 from SomberNight/fix_sweep_2fa

fix sweeping for 2fa wallets
This commit is contained in:
ThomasV
2017-12-12 05:31:07 +01:00
committed by GitHub
3 changed files with 14 additions and 8 deletions

View File

@@ -860,7 +860,8 @@ class Abstract_Wallet(PrintError):
def dust_threshold(self):
return dust_threshold(self.network)
def make_unsigned_transaction(self, inputs, outputs, config, fixed_fee=None, change_addr=None):
def make_unsigned_transaction(self, inputs, outputs, config, fixed_fee=None,
change_addr=None, is_sweep=False):
# check outputs
i_max = None
for i, o in enumerate(outputs):