paytoedit: fix is_max

This commit is contained in:
ThomasV 2016-12-31 17:10:45 +01:00
parent 0b3fe8df83
commit 7e871923f4
1 changed files with 3 additions and 1 deletions

View File

@ -132,6 +132,7 @@ class PayToEdit(ScanQRTextEdit):
self.win.lock_amount(False)
return
is_max = False
for i, line in enumerate(lines):
try:
_type, to_address, amount = self.parse_address_and_amount(line)
@ -141,10 +142,11 @@ class PayToEdit(ScanQRTextEdit):
outputs.append((_type, to_address, amount))
if amount == '!':
self.win.is_max = True
is_max = True
else:
total += amount
self.win.is_max = is_max
self.outputs = outputs
self.payto_address = None