We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc3f05 commit 0787900Copy full SHA for 0787900
1 file changed
src/chainparams.h
@@ -86,7 +86,9 @@ class CChainParams
86
void UpdateVersionBitsParameters(Consensus::DeploymentPos d, int64_t nStartTime, int64_t nTimeout);
87
int GetPoWAlgo(int nHeight) const {
88
if (strNetworkID == CBaseChainParams::TESTNET && nHeight > 10){
89
- return ALGO_ALLIUM ;
+ return ALGO_ALLIUM ;
90
+ } else if(strNetworkID == CBaseChainParams::MAIN && nHeight > 58670){ // Approx 19:00 2018-02-16 UTC
91
+ return ALGO_ALLIUM;
92
} else {
93
return ALGO_SCRYPT;
94
}
0 commit comments