Remove LNURLStandardInvoiceEnabled

This commit is contained in:
nicolas.dorier
2023-04-24 19:26:56 +09:00
parent 47f5d97eaf
commit d8698181f4
20 changed files with 111 additions and 125 deletions

View File

@@ -16,12 +16,11 @@ namespace BTCPayServer.Client.Models
{
}
public LNURLPayPaymentMethodData(string cryptoCode, bool enabled, bool useBech32Scheme, bool enableForStandardInvoices)
public LNURLPayPaymentMethodData(string cryptoCode, bool enabled, bool useBech32Scheme)
{
Enabled = enabled;
CryptoCode = cryptoCode;
UseBech32Scheme = useBech32Scheme;
EnableForStandardInvoices = enableForStandardInvoices;
}
}
}