From 49ac8924fec3985d245ab4cab17407949dfba663 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 25 Jun 2016 20:21:07 +0200 Subject: [PATCH] kivy: fixes for on_qr --- gui/kivy/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py index c8673337..8d0b3240 100644 --- a/gui/kivy/main_window.py +++ b/gui/kivy/main_window.py @@ -237,6 +237,7 @@ class ElectrumWindow(App): def on_qr(self, data): from electrum.bitcoin import base_decode, is_address + data = data.strip() if is_address(data): self.set_URI(data) return @@ -248,6 +249,7 @@ class ElectrumWindow(App): try: text = base_decode(data, None, base=43).encode('hex') tx = Transaction(text) + tx.deserialize() except: tx = None if tx: