Skip to content

Commit 9adb72e

Browse files
remove initialize to 0 in chainparams.h
Signed-off-by: Pasta <pasta@dashboost.org>
1 parent 6ce3e55 commit 9adb72e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/chainparams.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ class CChainParams
115115
bool fAllowMultiplePorts;
116116
CCheckpointData checkpointData;
117117
ChainTxData chainTxData;
118-
int nPoolMinParticipants{0};
119-
int nPoolMaxParticipants{0};
120-
int nFulfilledRequestExpireTime{0};
118+
int nPoolMinParticipants;
119+
int nPoolMaxParticipants;
120+
int nFulfilledRequestExpireTime;
121121
std::vector<std::string> vSporkAddresses;
122122
int nMinSporkKeys;
123123
bool fBIP9CheckMasternodesUpgraded;

0 commit comments

Comments
 (0)