mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
28 lines
651 B
C#
28 lines
651 B
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Rating;
|
|
|
|
namespace BTCPayServer.Services.Rates
|
|
{
|
|
public class NullRateProvider : IRateProvider
|
|
{
|
|
private NullRateProvider()
|
|
{
|
|
|
|
}
|
|
private static readonly NullRateProvider _Instance = new NullRateProvider();
|
|
public static NullRateProvider Instance
|
|
{
|
|
get
|
|
{
|
|
return _Instance;
|
|
}
|
|
}
|
|
public Task<PairRate[]> GetRatesAsync(CancellationToken cancellationToken)
|
|
{
|
|
return Task.FromResult(Array.Empty<PairRate>());
|
|
}
|
|
}
|
|
}
|