Merge pull request #4418 from wiz/update-devmode-pricenode

Add clearnet pricenode URL for devmode usage
This commit is contained in:
sqrrm 2020-08-20 10:07:22 +02:00 committed by GitHub
commit 94b8b69310
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,7 +110,7 @@ public class ProvidersRepository {
// If we run in localhost mode we don't have the tor node running, so we need a clearnet host
// Use localhost for using a locally running provider
// providerAsString = Collections.singletonList("http://localhost:8080/");
providers = Collections.singletonList("http://174.138.104.137:8080/"); // @miker
providers = Collections.singletonList("https://price.bisq.wiz.biz/"); // @wiz
} else {
providers = DEFAULT_NODES;
}