Skip to content

Commit dc6576e

Browse files
committed
Address review comments
1 parent 841a42f commit dc6576e

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

common/eth2_network_config/built_in_network_configs/mainnet/config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ MESSAGE_DOMAIN_INVALID_SNAPPY: 0x00000000
138138
MESSAGE_DOMAIN_VALID_SNAPPY: 0x01000000
139139
# 2 subnets per node
140140
SUBNETS_PER_NODE: 2
141-
# 2**8 (= 64)
141+
# 2**6 (= 64) subnets
142142
ATTESTATION_SUBNET_COUNT: 64
143143
ATTESTATION_SUBNET_EXTRA_BITS: 0
144144
# ceillog2(ATTESTATION_SUBNET_COUNT) + ATTESTATION_SUBNET_EXTRA_BITS
@@ -196,4 +196,4 @@ BLOB_SCHEDULE:
196196
- EPOCH: 419072 # January 7, 2026, 01:01:11am UTC
197197
MAX_BLOBS_PER_BLOCK: 21
198198

199-
# Gloas
199+
# Gloas

consensus/types/presets/gnosis/electra.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ MAX_WITHDRAWAL_REQUESTS_PER_PAYLOAD: 16
4141

4242
# Withdrawals processing
4343
# ---------------------------------------------------------------
44-
# 2**3 ( = 8) pending withdrawals
45-
MAX_PENDING_PARTIALS_PER_WITHDRAWALS_SWEEP: 8
44+
MAX_PENDING_PARTIALS_PER_WITHDRAWALS_SWEEP: 6
4645

4746
# Pending deposits processing
4847
# ---------------------------------------------------------------

consensus/types/src/chain_spec.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1456,8 +1456,7 @@ impl ChainSpec {
14561456
.expect("pow does not overflow"),
14571457
whistleblower_reward_quotient_electra: u64::checked_pow(2, 12)
14581458
.expect("pow does not overflow"),
1459-
max_pending_partials_per_withdrawals_sweep: u64::checked_pow(2, 3)
1460-
.expect("pow does not overflow"),
1459+
max_pending_partials_per_withdrawals_sweep: 6,
14611460
min_per_epoch_churn_limit_electra: option_wrapper(|| {
14621461
u64::checked_pow(2, 7)?.checked_mul(u64::checked_pow(10, 9)?)
14631462
})

0 commit comments

Comments
 (0)