Browse Source

kivy: fixes for on_qr

master
ThomasV 10 years ago
parent
commit
49ac8924fe
  1. 2
      gui/kivy/main_window.py

2
gui/kivy/main_window.py

@ -237,6 +237,7 @@ class ElectrumWindow(App):
def on_qr(self, data): def on_qr(self, data):
from electrum.bitcoin import base_decode, is_address from electrum.bitcoin import base_decode, is_address
data = data.strip()
if is_address(data): if is_address(data):
self.set_URI(data) self.set_URI(data)
return return
@ -248,6 +249,7 @@ class ElectrumWindow(App):
try: try:
text = base_decode(data, None, base=43).encode('hex') text = base_decode(data, None, base=43).encode('hex')
tx = Transaction(text) tx = Transaction(text)
tx.deserialize()
except: except:
tx = None tx = None
if tx: if tx:

Loading…
Cancel
Save