mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
qt: fix unit of lnaddr.amount
This commit is contained in:
parent
ab5a776f47
commit
12c3dbd317
1 changed files with 1 additions and 1 deletions
|
@ -1773,7 +1773,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
|
||||||
self.payto_e.setFrozen(True)
|
self.payto_e.setFrozen(True)
|
||||||
self.payto_e.setText(pubkey)
|
self.payto_e.setText(pubkey)
|
||||||
self.message_e.setText(description)
|
self.message_e.setText(description)
|
||||||
self.amount_e.setAmount(lnaddr.amount)
|
self.amount_e.setAmount(lnaddr.amount * COIN)
|
||||||
#self.amount_e.textEdited.emit("")
|
#self.amount_e.textEdited.emit("")
|
||||||
self.payto_e.is_lightning = True
|
self.payto_e.is_lightning = True
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue