From 010752d4ebe3074bdad5c51d498d72aa04409061 Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Sat, 30 Mar 2019 15:55:34 +0100 Subject: [PATCH] Set fAllowMultiplePorts to true for testnet (#2817) On testnet it's quite usual to have multiple MNs on the same IP. Now that we have LLMQs and DKGs which require deterministic intra quorum connections, we must allow them to connect to each other even if the IPs are shared very often. --- src/chainparams.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 522f21157894c..139284ee8fc39 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -496,7 +496,7 @@ class CTestNetParams : public CChainParams { fRequireRoutableExternalIP = true; fMineBlocksOnDemand = false; fAllowMultipleAddressesFromGroup = false; - fAllowMultiplePorts = false; + fAllowMultiplePorts = true; nPoolMinParticipants = 3; nPoolMaxParticipants = 5;