3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 15:22:16 +00:00

WalletTool: automatically use localhost in regtest mode.

This commit is contained in:
Mike Hearn 2014-04-01 16:48:01 +02:00
parent a2afe470c2
commit 8392a5590a

View File

@ -700,10 +700,15 @@ public class WalletTool {
System.exit(1); System.exit(1);
} }
} }
} else {
if (params == RegTestParams.get()) {
log.info("Assuming regtest node on localhost");
peers.addAddress(InetAddress.getLoopbackAddress());
} else { } else {
peers.addPeerDiscovery(new DnsDiscovery(params)); peers.addPeerDiscovery(new DnsDiscovery(params));
} }
} }
}
private static void syncChain() { private static void syncChain() {
try { try {