1
0

receive_tab: initialize fields

This commit is contained in:
ThomasV
2023-03-29 11:10:00 +02:00
parent ea7dbb19ce
commit 31bff4d2a8

View File

@@ -28,6 +28,14 @@ if TYPE_CHECKING:
class ReceiveTab(QWidget, MessageBoxMixin, Logger):
# strings updated by update_current_request
addr = ''
lnaddr = ''
URI = ''
address_help = ''
URI_help = ''
ln_help = ''
def __init__(self, window: 'ElectrumWindow'):
QWidget.__init__(self, window)
Logger.__init__(self)