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.
This commit is contained in:
Alexander Block 2019-03-30 15:55:34 +01:00 committed by UdjinM6
parent 74d999e568
commit 010752d4eb

View File

@ -496,7 +496,7 @@ public:
fRequireRoutableExternalIP = true;
fMineBlocksOnDemand = false;
fAllowMultipleAddressesFromGroup = false;
fAllowMultiplePorts = false;
fAllowMultiplePorts = true;
nPoolMinParticipants = 3;
nPoolMaxParticipants = 5;