mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
kivy error message
This commit is contained in:
parent
8f16a1bd09
commit
b99fdf3130
1 changed files with 3 additions and 0 deletions
|
@ -257,6 +257,9 @@ class SendScreen(CScreen):
|
|||
outputs = self.payment_request.get_outputs()
|
||||
else:
|
||||
address = str(self.screen.address)
|
||||
if not address:
|
||||
self.app.show_error(_('No recipient. Please scan a Bitcoin address or a payment request'))
|
||||
return
|
||||
if not bitcoin.is_address(address):
|
||||
self.app.show_error(_('Invalid Bitcoin Address') + ':\n' + address)
|
||||
return
|
||||
|
|
Loading…
Add table
Reference in a new issue