mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-20 13:34:37 +01:00
Remove tests of chaincoin default rate provider (#2189)
This commit is contained in:
parent
5098f63175
commit
56daf347b9
1 changed files with 5 additions and 1 deletions
|
@ -3010,7 +3010,11 @@ namespace BTCPayServer.Tests
|
|||
{
|
||||
var rateResult = value.Value.GetAwaiter().GetResult();
|
||||
Logs.Tester.LogInformation($"Testing {value.Key.ToString()}");
|
||||
Assert.True(rateResult.BidAsk != null, $"Impossible to get the rate {rateResult.EvaluatedRule}");
|
||||
// txbit for CHC (ChainCoin) does not work anymore.
|
||||
// We will delist CHC if not fixed.
|
||||
var skip = !rateResult.EvaluatedRule.Contains("txbit");
|
||||
if (skip)
|
||||
Assert.True(rateResult.BidAsk != null, $"Impossible to get the rate {rateResult.EvaluatedRule}");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue