1
0

extend bitcoin: URI with signature data, instead of serialized format

This commit is contained in:
ThomasV
2015-07-21 11:40:55 +02:00
parent 1e668209dc
commit e77f0c98e7
6 changed files with 54 additions and 54 deletions

View File

@@ -57,7 +57,7 @@ class OpenFileEventFilter(QObject):
def eventFilter(self, obj, event):
if event.type() == QtCore.QEvent.FileOpen:
if len(self.windows) >= 1:
self.windows[0].pay_from_URI(event.url().toEncoded())
self.windows[0].pay_to_URI(event.url().toEncoded())
return True
return False
@@ -140,7 +140,7 @@ class ElectrumGui:
return int(qtVersion[0]) >= 4 and int(qtVersion[2]) >= 7
def set_url(self, uri):
self.current_window.pay_from_URI(uri)
self.current_window.pay_to_URI(uri)
def run_wizard(self, storage, action):
import installwizard