This commit is contained in:
boufni95 2025-11-26 16:50:14 +00:00
parent b959f04652
commit 7e260af2d8

View file

@ -193,6 +193,7 @@ export default class {
case Types.UserOperationType.OUTGOING_TX: case Types.UserOperationType.OUTGOING_TX:
throw new Error("Sending a transaction is not supported") throw new Error("Sending a transaction is not supported")
case Types.UserOperationType.OUTGOING_INVOICE: case Types.UserOperationType.OUTGOING_INVOICE:
console.log("fee fixed limit", this.settings.getSettings().lndSettings.feeFixedLimit)
const fee = this.getInvoicePaymentServiceFee(amount, appUser) const fee = this.getInvoicePaymentServiceFee(amount, appUser)
return Math.max(fee, this.settings.getSettings().lndSettings.feeFixedLimit) return Math.max(fee, this.settings.getSettings().lndSettings.feeFixedLimit)
case Types.UserOperationType.OUTGOING_USER_TO_USER: case Types.UserOperationType.OUTGOING_USER_TO_USER: