Put back irrelevant status with caveat comment

This commit is contained in:
Michael Sproul
2026-05-12 12:09:01 +10:00
parent d77c23bcfb
commit e0ba04d198

View File

@@ -854,6 +854,9 @@ impl<E: EthSpec> Tester<E> {
.seconds_from_current_slot_start() .seconds_from_current_slot_start()
.unwrap(); .unwrap();
// FIXME(sproul): this whole concept is a bit ill-conceived, the blocks just get
// rejected here due to passing payload status irrelevant, which is not a real codepath
// that should be reached
let result = self let result = self
.harness .harness
.chain .chain
@@ -865,7 +868,7 @@ impl<E: EthSpec> Tester<E> {
block_root, block_root,
block_delay, block_delay,
&state, &state,
PayloadVerificationStatus::Optimistic, PayloadVerificationStatus::Irrelevant,
block.message().proposer_index(), block.message().proposer_index(),
&self.harness.chain.spec, &self.harness.chain.spec,
); );