mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-22 19:49:32 +00:00
prioritise conneting to our remote node RPC (if no local node)
and add credentials
This commit is contained in:
parent
6fbfef029e
commit
2a50350cff
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ public final class CoreMoneroConnectionsService {
|
||||||
));
|
));
|
||||||
DEFAULT_CONNECTIONS.put(BaseCurrencyNetwork.XMR_STAGENET, Arrays.asList(
|
DEFAULT_CONNECTIONS.put(BaseCurrencyNetwork.XMR_STAGENET, Arrays.asList(
|
||||||
new MoneroRpcConnection("http://127.0.0.1:38081").setPriority(1), // localhost is first priority, use loopback address to match url generated by local node service
|
new MoneroRpcConnection("http://127.0.0.1:38081").setPriority(1), // localhost is first priority, use loopback address to match url generated by local node service
|
||||||
new MoneroRpcConnection("http://70.34.196.88:38420").setPriority(2),
|
new MoneroRpcConnection("http://70.34.196.88:38420", "remote", "meadow").setPriority(1),
|
||||||
new MoneroRpcConnection("http://stagenet.community.rino.io:38081").setPriority(2),
|
new MoneroRpcConnection("http://stagenet.community.rino.io:38081").setPriority(2),
|
||||||
new MoneroRpcConnection("http://stagenet.melo.tools:38081").setPriority(2),
|
new MoneroRpcConnection("http://stagenet.melo.tools:38081").setPriority(2),
|
||||||
new MoneroRpcConnection("http://node.sethforprivacy.com:38089").setPriority(2),
|
new MoneroRpcConnection("http://node.sethforprivacy.com:38089").setPriority(2),
|
||||||
|
|
Loading…
Reference in a new issue