We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f1509c commit 663e8d1Copy full SHA for 663e8d1
src/chain.h
@@ -36,7 +36,7 @@ static constexpr int64_t TIMESTAMP_WINDOW = MAX_FUTURE_BLOCK_TIME;
36
*
37
* Ref: https://github.com/bitcoin/bitcoin/pull/1026
38
*/
39
-static constexpr int64_t MAX_BLOCK_TIME_GAP = 50 * 3; // = MAX_FUTURE_BLOCK_TIME / 2
+static constexpr int64_t MAX_BLOCK_TIME_GAP = 60 * 12; // Block time * 12
40
41
class CBlockFileInfo
42
{
src/timedata.h
@@ -10,7 +10,7 @@
10
#include <stdint.h>
11
#include <vector>
12
13
-static const int64_t DEFAULT_MAX_TIME_ADJUSTMENT = 60 * 12; // Block time * 12
+static const int64_t DEFAULT_MAX_TIME_ADJUSTMENT = 50 * 3; // ~MAX_FUTURE_BLOCK_TIME / 2
14
15
class CNetAddr;
16
0 commit comments