diff --git a/BTCPayServer/Data/Payouts/LightningLike/BoltInvoiceClaimDestination.cs b/BTCPayServer/Data/Payouts/LightningLike/BoltInvoiceClaimDestination.cs index ea6693021..30956fdff 100644 --- a/BTCPayServer/Data/Payouts/LightningLike/BoltInvoiceClaimDestination.cs +++ b/BTCPayServer/Data/Payouts/LightningLike/BoltInvoiceClaimDestination.cs @@ -11,7 +11,7 @@ namespace BTCPayServer.Data.Payouts.LightningLike Bolt11 = bolt11 ?? throw new ArgumentNullException(nameof(bolt11)); PaymentRequest = paymentRequest; PaymentHash = paymentRequest.Hash; - Amount = paymentRequest.MinimumAmount.ToDecimal(LightMoneyUnit.BTC); + Amount = paymentRequest.MinimumAmount.MilliSatoshi == LightMoney.Zero ? null: paymentRequest.MinimumAmount.ToDecimal(LightMoneyUnit.BTC); } public override string ToString()