update tests

This commit is contained in:
realbigsean
2024-05-09 18:59:53 -04:00
parent 92d0b125c7
commit eb2260222c
6 changed files with 127 additions and 56 deletions

View File

@@ -865,6 +865,14 @@ impl ChainSpec {
electra_fork_epoch: None,
max_pending_partials_per_withdrawals_sweep: u64::checked_pow(2, 0)
.expect("pow does not overflow"),
min_per_epoch_churn_limit_electra: option_wrapper(|| {
u64::checked_pow(2, 6)?.checked_mul(u64::checked_pow(10, 9)?)
})
.expect("calculation does not overflow"),
max_per_epoch_activation_exit_churn_limit: option_wrapper(|| {
u64::checked_pow(2, 7)?.checked_mul(u64::checked_pow(10, 9)?)
})
.expect("calculation does not overflow"),
// Other
network_id: 2, // lighthouse testnet network id
deposit_chain_id: 5,