diff --git a/BTCPayServer.Rating/Providers/KrakenExchangeRateProvider.cs b/BTCPayServer.Rating/Providers/KrakenExchangeRateProvider.cs index f549cb62e..997a4531c 100644 --- a/BTCPayServer.Rating/Providers/KrakenExchangeRateProvider.cs +++ b/BTCPayServer.Rating/Providers/KrakenExchangeRateProvider.cs @@ -93,7 +93,7 @@ namespace BTCPayServer.Services.Rates if (ticker != null) { var pair = GetCurrencyPair(symbol); - if (pair is not null) + if (pair is not null && ticker.Bid <= ticker.Ask) result.Add(new PairRate(pair, new BidAsk(ticker.Bid, ticker.Ask))); } }