mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-07 14:54:15 +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 {
|
} 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…
x
Reference in New Issue
Block a user