diff --git a/BTCPayServer/HostedServices/InvoiceNotificationManager.cs b/BTCPayServer/HostedServices/BitpayIPNSender.cs similarity index 99% rename from BTCPayServer/HostedServices/InvoiceNotificationManager.cs rename to BTCPayServer/HostedServices/BitpayIPNSender.cs index ca1e2ba08..67b232af6 100644 --- a/BTCPayServer/HostedServices/InvoiceNotificationManager.cs +++ b/BTCPayServer/HostedServices/BitpayIPNSender.cs @@ -22,7 +22,7 @@ using Newtonsoft.Json.Linq; namespace BTCPayServer.HostedServices { - public class InvoiceNotificationManager : IHostedService + public class BitpayIPNSender : IHostedService { readonly HttpClient _Client; @@ -45,7 +45,7 @@ namespace BTCPayServer.HostedServices private readonly EmailSenderFactory _EmailSenderFactory; private readonly StoreRepository _StoreRepository; - public InvoiceNotificationManager( + public BitpayIPNSender( IHttpClientFactory httpClientFactory, IBackgroundJobClient jobClient, EventAggregator eventAggregator, diff --git a/BTCPayServer/Hosting/BTCPayServerServices.cs b/BTCPayServer/Hosting/BTCPayServerServices.cs index d63330704..0d98dec3b 100644 --- a/BTCPayServer/Hosting/BTCPayServerServices.cs +++ b/BTCPayServer/Hosting/BTCPayServerServices.cs @@ -342,7 +342,7 @@ namespace BTCPayServer.Hosting services.AddSingleton(); services.AddSingleton(); - services.AddSingleton(); + services.AddSingleton(); services.AddSingleton(); services.AddSingleton(); services.AddSingleton();