Added Flag to Bypass New Payload Cache

This commit is contained in:
Mark Mackey
2025-11-24 12:24:43 -06:00
parent ef1aa6bd96
commit 77e1c67723
6 changed files with 24 additions and 21 deletions

View File

@@ -469,6 +469,7 @@ where
execution_endpoint: url,
secret_file: None,
suggested_fee_recipient: Some(Address::repeat_byte(42)),
bypass_new_payload_cache: true,
..Default::default()
};
let execution_layer =

View File

@@ -279,8 +279,6 @@ impl InvalidPayloadRig {
} else {
mock_execution_layer.server.full_payload_verification();
}
// wait for the new payload cache to timeout
tokio::time::sleep(std::time::Duration::from_secs(12)).await;
let root = self
.harness
.process_block(slot, block.canonical_root(), (block.clone(), blobs.clone()))