diff --git a/BTCPayServer/Services/Cheater.cs b/BTCPayServer/Services/Cheater.cs index 7b8417576..9a988c9c2 100644 --- a/BTCPayServer/Services/Cheater.cs +++ b/BTCPayServer/Services/Cheater.cs @@ -38,9 +38,10 @@ namespace BTCPayServer.Services } } - async Task IHostedService.StartAsync(CancellationToken cancellationToken) + Task IHostedService.StartAsync(CancellationToken cancellationToken) { - await CashCow.ScanRPCCapabilitiesAsync(); + _ = CashCow.ScanRPCCapabilitiesAsync(); + return Task.CompletedTask; } Task IHostedService.StopAsync(CancellationToken cancellationToken)