Skip to content

Commit

Permalink
Set fAllowMultiplePorts to true for testnet (#2817)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
codablock authored and UdjinM6 committed Mar 30, 2019
1 parent 74d999e commit 010752d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ class CTestNetParams : public CChainParams {
fRequireRoutableExternalIP = true;
fMineBlocksOnDemand = false;
fAllowMultipleAddressesFromGroup = false;
fAllowMultiplePorts = false;
fAllowMultiplePorts = true;

nPoolMinParticipants = 3;
nPoolMaxParticipants = 5;
Expand Down

0 comments on commit 010752d

Please sign in to comment.