Fix: Incorrect percentage accounting of raised money in crowdfunding (#6347)

This commit is contained in:
Nicolas Dorier
2024-11-01 08:23:10 +09:00
committed by GitHub
parent e3ec07da76
commit 4687bb95cb
3 changed files with 13 additions and 28 deletions

View File

@@ -56,7 +56,6 @@ namespace BTCPayServer.Plugins.Crowdfund.Models
public decimal? PendingProgressPercentage { get; set; }
public DateTime LastUpdated { get; set; }
public Dictionary<string, PaymentStat> PaymentStats { get; set; }
public Dictionary<string, PaymentStat> PendingPaymentStats { get; set; }
public DateTime? LastResetDate { get; set; }
public DateTime? NextResetDate { get; set; }
}