Merge branch 'unstable' into gloas-fix-proposer-pref-gossip-verification

This commit is contained in:
Eitan Seri-Levi
2026-06-01 02:30:36 -07:00
committed by GitHub
87 changed files with 2294 additions and 3505 deletions

View File

@@ -9167,11 +9167,17 @@ async fn builder_works_post_deneb() {
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn get_blob_sidecars() {
let mut config = ApiTesterConfig::default();
let mut config = ApiTesterConfig {
retain_historic_states: false,
spec: E::default_spec(),
node_custody_type: NodeCustodyType::Supernode,
};
config.spec.altair_fork_epoch = Some(Epoch::new(0));
config.spec.bellatrix_fork_epoch = Some(Epoch::new(0));
config.spec.capella_fork_epoch = Some(Epoch::new(0));
config.spec.deneb_fork_epoch = Some(Epoch::new(0));
config.spec.electra_fork_epoch = Some(Epoch::new(0));
config.spec.fulu_fork_epoch = Some(Epoch::new(0));
ApiTester::new_from_config(config)
.await