diff --git a/BTCPayServer/Payments/Bitcoin/BitcoinLikePaymentHandler.cs b/BTCPayServer/Payments/Bitcoin/BitcoinLikePaymentHandler.cs index 30ccc8374..e5b81aaff 100644 --- a/BTCPayServer/Payments/Bitcoin/BitcoinLikePaymentHandler.cs +++ b/BTCPayServer/Payments/Bitcoin/BitcoinLikePaymentHandler.cs @@ -154,6 +154,8 @@ namespace BTCPayServer.Payments.Bitcoin onchainMethod.NetworkFeeRate = (await prepare.GetNetworkFeeRate); onchainMethod.NextNetworkFee = onchainMethod.NetworkFeeRate.GetFee(100); // assume price for 100 bytes + if (onchainMethod.NextNetworkFee == null) + onchainMethod.NextNetworkFee = Money.Zero; break; case NetworkFeeMode.Never: onchainMethod.NetworkFeeRate = FeeRate.Zero;