This commit is contained in:
thomasv 2012-02-03 11:51:57 +01:00
parent ac9d9048dd
commit a041b48f4d
2 changed files with 4 additions and 3 deletions

View File

@ -105,9 +105,10 @@ if __name__ == '__main__':
wallet.verify_message(signing_address, signature, cmd )
except:
gui.show_message('Warning: the URI contains a bad signature.\nThe identity of the recipient cannot be verified.\nContinue at your own risks!')
signature = identity = ''
address = amount = label = identity = ''
gui.set_send_tab(address, amount, label, identity)
if address:
gui.set_send_tab(address, amount, label, identity)
gui.main()
wallet.save()

View File

@ -766,7 +766,7 @@ class BitcoinGUI:
self.set_frozen(self.payto_entry,True)
self.set_frozen(self.payto_amount_entry,True)
self.set_frozen(self.payto_label_entry,True)
self.payto_sig_id.set_text( ' This transaction URI was signed by ' + identity )
self.payto_sig_id.set_text( ' The bitcoin URI was signed by ' + identity )
else:
self.payto_sig.set_visible(False)