mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 18:25:21 +00:00
qt: fix unit of lnaddr.amount
This commit is contained in:
parent
6263b472d9
commit
4fe912f4b3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue