This commit is contained in:
nicolas.dorier
2019-07-12 23:34:10 +09:00
parent e488f93b17
commit dc97982fad
6 changed files with 81 additions and 68 deletions

View File

@@ -590,6 +590,7 @@ namespace BTCPayServer.Controllers
private CoinAverageExchange[] GetSupportedExchanges()
{
return _RateFactory.RateProviderFactory.GetSupportedExchanges()
.Where(r => !string.IsNullOrWhiteSpace(r.Value.Display))
.Select(c => c.Value)
.OrderBy(s => s.Name, StringComparer.OrdinalIgnoreCase)
.ToArray();