File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 12
12
# Parameters:
13
13
14
14
# Aim for still working fine at some point in the future. [datetime]
15
- TIME = datetime (2026 , 5 , 25 )
15
+ TIME = datetime (2026 , 10 , 5 )
16
16
17
17
# Expected block interval. [timedelta]
18
18
BLOCK_INTERVAL = timedelta (seconds = 600 )
19
19
20
20
# The number of headers corresponding to the minchainwork parameter. [headers]
21
- MINCHAINWORK_HEADERS = 784000
21
+ MINCHAINWORK_HEADERS = 804000
22
22
23
23
# Combined processing bandwidth from all attackers to one victim. [bit/s]
24
24
# 6 Gbit/s is approximately the speed at which a single thread of a Ryzen 5950X CPU thread can hash
Original file line number Diff line number Diff line change 13
13
// contrib/devtools/headerssync-params.py.
14
14
15
15
// ! Store one header commitment per HEADER_COMMITMENT_PERIOD blocks.
16
- constexpr size_t HEADER_COMMITMENT_PERIOD{600 };
16
+ constexpr size_t HEADER_COMMITMENT_PERIOD{606 };
17
17
18
18
// ! Only feed headers to validation once this many headers on top have been
19
19
// ! received and validated against commitments.
20
- constexpr size_t REDOWNLOAD_BUFFER_SIZE{14308 }; // 14308/600 = ~23.8 commitments
20
+ constexpr size_t REDOWNLOAD_BUFFER_SIZE{14441 }; // 14441/606 = ~23.8 commitments
21
21
22
22
// Our memory analysis assumes 48 bytes for a CompressedHeader (so we should
23
23
// re-calculate parameters if we compress further)
You can’t perform that action at this time.
0 commit comments