Gloas spec v1.7.0-alpha.5 and beacon_chain tests (#8998)

Fix database pruning post-Gloas


  - Fix DB pruning logic (and state summaries DAG)
- Get the `beacon_chain` tests running with `FORK_NAME=gloas` 🎉


Co-Authored-By: Michael Sproul <michael@sigmaprime.io>

Co-Authored-By: Jimmy Chen <jchen.tc@gmail.com>

Co-Authored-By: Eitan Seri- Levi <eserilev@gmail.com>

Co-Authored-By: dapplion <35266934+dapplion@users.noreply.github.com>

Co-Authored-By: Eitan Seri-Levi <eserilev@ucsc.edu>
This commit is contained in:
Michael Sproul
2026-04-21 16:29:15 +10:00
committed by GitHub
parent c028bac28d
commit cf3d5e285e
82 changed files with 1513 additions and 1391 deletions

View File

@@ -99,6 +99,12 @@ fn operations_execution_payload_bid() {
OperationsHandler::<MainnetEthSpec, ExecutionPayloadBidBlock<_>>::default().run();
}
#[test]
fn operations_parent_execution_payload() {
OperationsHandler::<MinimalEthSpec, ParentExecutionPayloadBlock<_>>::default().run();
OperationsHandler::<MainnetEthSpec, ParentExecutionPayloadBlock<_>>::default().run();
}
#[test]
fn operations_payload_attestation() {
OperationsHandler::<MinimalEthSpec, PayloadAttestation<_>>::default().run();
@@ -1039,9 +1045,15 @@ fn fork_choice_deposit_with_reorg() {
}
#[test]
fn fork_choice_on_execution_payload() {
ForkChoiceHandler::<MinimalEthSpec>::new("on_execution_payload").run();
ForkChoiceHandler::<MainnetEthSpec>::new("on_execution_payload").run();
fn fork_choice_on_execution_payload_envelope() {
ForkChoiceHandler::<MinimalEthSpec>::new("on_execution_payload_envelope").run();
ForkChoiceHandler::<MainnetEthSpec>::new("on_execution_payload_envelope").run();
}
#[test]
fn fork_choice_get_parent_payload_status() {
ForkChoiceHandler::<MinimalEthSpec>::new("get_parent_payload_status").run();
ForkChoiceHandler::<MainnetEthSpec>::new("get_parent_payload_status").run();
}
#[test]