We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26792b commit d8dfce5Copy full SHA for d8dfce5
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
@@ -59,7 +59,6 @@ ElDialog {
59
if (!requestDetails.busy) {
60
// don't assign while busy to prevent the view from changing while receiving
61
// the incoming payment
62
- console.log('UPDATING')
63
updateLimits()
64
65
0 commit comments