Greenfield: LNURLPay store payment method fixes (#5446)

This commit is contained in:
d11n
2023-11-02 08:11:32 +01:00
committed by GitHub
parent 609ec0989f
commit 6acc545b66
4 changed files with 14 additions and 6 deletions

View File

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