From 4fe912f4b3a05c2dc2a5cbe3bde17f29021bd6af Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 1 Jun 2018 11:55:18 +0200 Subject: [PATCH] qt: fix unit of lnaddr.amount --- electrum/gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index 2ac7b8743..97f28a64d 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -1885,7 +1885,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): self.payto_e.setFrozen(True) self.payto_e.setText(pubkey) self.message_e.setText(description) - self.amount_e.setAmount(lnaddr.amount) + self.amount_e.setAmount(lnaddr.amount * COIN) #self.amount_e.textEdited.emit("") self.payto_e.is_lightning = True