Skip to content

Commit

Permalink
[Core] raise nTargetTimespan_V2 to 30 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
random-zebra committed Sep 23, 2019
1 parent e7a7bfd commit f892c7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ class CMainParams : public CChainParams
nRejectBlockOutdatedMajority = 10260; // 95%
nToCheckBlockUpgradeMajority = 10800; // Approximate expected amount of blocks in 7 days (1440*7.5)
nMinerThreads = 0;
nTargetSpacing = 1 * 60; // 1 minute
nTargetTimespan = 40 * 60; // 40 minutes
nTimeSlotLength = 15; // 15 seconds
nTargetTimespan_V2 = nTimeSlotLength * 60; // 15 minutes
nTargetSpacing = 1 * 60; // 1 minute
nTargetTimespan = 40 * 60; // 40 minutes
nTimeSlotLength = 15; // 15 seconds
nTargetTimespan_V2 = 2 * nTimeSlotLength * 60; // 30 minutes
nMaturity = 100;
nStakeMinDepth = 600;
nFutureTimeDriftPoW = 7200;
Expand Down

0 comments on commit f892c7c

Please sign in to comment.