From 7e871923f4454eb6c7e149bf1252bcba4a80994c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 31 Dec 2016 17:10:45 +0100 Subject: [PATCH] paytoedit: fix is_max --- gui/qt/paytoedit.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gui/qt/paytoedit.py b/gui/qt/paytoedit.py index 0153217b..d7175316 100644 --- a/gui/qt/paytoedit.py +++ b/gui/qt/paytoedit.py @@ -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