SomberNight
2 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
2 changed files with
1 additions and
4 deletions
-
electrum/gui/kivy/uix/dialogs/request_dialog.py
-
electrum/wallet.py
|
|
@ -172,9 +172,6 @@ class RequestDialog(Factory.Popup): |
|
|
|
qr_data = qr_data.upper() |
|
|
|
if qr_data: |
|
|
|
self.ids.qr.set_data(qr_data) |
|
|
|
self.ids.qr.opacity = 1 |
|
|
|
else: |
|
|
|
self.ids.qr.opacity = 0 |
|
|
|
if not qr_data and self.error_text: |
|
|
|
self.show_text = True |
|
|
|
else: |
|
|
|
|
|
@ -2847,7 +2847,7 @@ class Abstract_Wallet(ABC, Logger, EventListener): |
|
|
|
if status == PR_EXPIRED: |
|
|
|
address_help = URI_help = ln_help = _('This request has expired') |
|
|
|
|
|
|
|
is_amt_too_small_for_onchain = amount_sat < self.dust_threshold() |
|
|
|
is_amt_too_small_for_onchain = amount_sat and amount_sat < self.dust_threshold() |
|
|
|
if not addr: |
|
|
|
address_is_error = True |
|
|
|
address_help = _('This request cannot be paid on-chain') |
|
|
|