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:
parent
a2afe470c2
commit
8392a5590a
@ -701,7 +701,12 @@ public class WalletTool {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
peers.addPeerDiscovery(new DnsDiscovery(params));
|
||||
if (params == RegTestParams.get()) {
|
||||
log.info("Assuming regtest node on localhost");
|
||||
peers.addAddress(InetAddress.getLoopbackAddress());
|
||||
} else {
|
||||
peers.addPeerDiscovery(new DnsDiscovery(params));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user