fix price provider selection, remove local provider for production
Some checks failed
CI / build (macos-13) (push) Has been cancelled
CI / build (ubuntu-22.04) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
Codacy Coverage Reporter / Publish coverage (push) Has been cancelled

This commit is contained in:
woodser 2024-11-11 07:22:56 -05:00
parent 8c098632b7
commit 90110ac514
2 changed files with 3 additions and 3 deletions

View file

@ -200,7 +200,7 @@ public class Offer implements NetworkPayload, PersistablePayload {
return null;
}
} else {
log.warn("We don't have a market price. " +
log.trace("We don't have a market price. " +
"That case could only happen if you don't have a price feed.");
return null;
}

View file

@ -93,7 +93,7 @@ public class ProvidersRepository {
fillProviderList();
// select next provider if current provider is null or banned
if (baseUrl == null || isBanned(baseUrl)) selectNextProviderBaseUrl();
if (baseUrl.isEmpty() || isBanned(baseUrl)) selectNextProviderBaseUrl();
if (bannedNodes != null && !bannedNodes.isEmpty()) {
log.info("Excluded provider nodes from filter: nodes={}, selected provider baseUrl={}, providerList={}", bannedNodes, baseUrl, providerList);
@ -140,7 +140,7 @@ public class ProvidersRepository {
"http://173.230.142.36:8078/");
} else {
providers = new ArrayList<String>();
providers.add(DEFAULT_LOCAL_NODE); // try local provider first
//providers.add(DEFAULT_LOCAL_NODE); // try local provider first
providers.addAll(DEFAULT_NODES);
}
} else {