mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-22 08:24:22 +01:00
Rename InvoiceNotificationManager -> BitpayIPNSender
This commit is contained in:
@@ -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,
|
||||
@@ -342,7 +342,7 @@ namespace BTCPayServer.Hosting
|
||||
|
||||
services.AddSingleton<IHostedService, NBXplorerWaiters>();
|
||||
services.AddSingleton<IHostedService, InvoiceEventSaverService>();
|
||||
services.AddSingleton<IHostedService, InvoiceNotificationManager>();
|
||||
services.AddSingleton<IHostedService, BitpayIPNSender>();
|
||||
services.AddSingleton<IHostedService, InvoiceWatcher>();
|
||||
services.AddSingleton<IHostedService, RatesHostedService>();
|
||||
services.AddSingleton<IHostedService, BackgroundJobSchedulerHostedService>();
|
||||
|
||||
Reference in New Issue
Block a user