We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51e1372 commit f7d2a9eCopy full SHA for f7d2a9e
2 files changed
electrum/gui/qml/components/LnurlPayRequestDialog.qml
@@ -25,6 +25,7 @@ ElDialog {
25
function isValidAmount() {
26
return amountBtc.textAsSats.gte(invoiceParser.lnurlData['min_sendable_msat'])
27
&& amountBtc.textAsSats.lte(invoiceParser.lnurlData['max_sendable_msat'])
28
+ && amountBtc.textAsSats.lte(invoiceParser.wallet.lightningCanSend)
29
}
30
31
ColumnLayout {
electrum/gui/qml/components/LnurlWithdrawRequestDialog.qml
@@ -57,7 +57,6 @@ ElDialog {
57
if (!requestDetails.busy) {
58
// don't assign while busy to prevent the view from changing while receiving
59
// the incoming payment
60
- console.log('UPDATING')
61
updateLimits()
62
63
0 commit comments