You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/pr-main_l1.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -203,7 +203,7 @@ jobs:
203
203
ethrex_flags: ""
204
204
- name: "Engine withdrawal tests"
205
205
simulation: ethereum/engine
206
-
test_pattern: "engine-withdrawals"
206
+
test_pattern: "engine-withdrawals/Corrupted Block Hash Payload|Empty Withdrawals|engine-withdrawals test loader|GetPayloadBodies|GetPayloadV2 Block Value|Max Initcode Size|Sync after 2 blocks - Withdrawals on Genesis|Withdraw many accounts|Withdraw to a single account|Withdraw to two accounts|Withdraw zero amount|Withdraw many accounts|Withdrawals Fork on Block 1 - 1 Block Re-Org|Withdrawals Fork on Block 1 - 8 Block Re-Org NewPayload|Withdrawals Fork on Block 2|Withdrawals Fork on Block 3|Withdrawals Fork on Block 8 - 10 Block Re-Org NewPayload|Withdrawals Fork on Canonical Block 8 / Side Block 7 - 10 Block Re-Org [^S]|Withdrawals Fork on Canonical Block 8 / Side Block 9 - 10 Block Re-Org [^S]"
/// Searching for pending blocks to include during syncing can potentially slow down block processing if we have a large chain of pending blocks.
61
-
/// For example, if we are syncing from genesis, it might take a while until this chain connects, but the searching for pending blocks loop will
62
-
/// happen each time we process a batch of blocks, and can potentially take long, that's why we just limit this check to 32 blocks.
63
-
/// Eventually we will implement some in-memory structure to make this check easy.
64
-
constPENDING_BLOCKS_RETRIEVAL_LIMIT:usize = 32;
65
-
66
60
#[cfg(feature = "sync-test")]
67
61
lazy_static::lazy_static! {
68
62
static ref EXECUTE_BATCH_SIZE:usize = std::env::var("EXECUTE_BATCH_SIZE").map(|var| var.parse().expect("Execute batch size environmental variable is not a number")).unwrap_or(EXECUTE_BATCH_SIZE_DEFAULT);
@@ -343,16 +337,6 @@ impl Syncer {
343
337
current_head, sync_head
344
338
);
345
339
346
-
// Try syncing backwards from the sync_head to find a common ancestor
0 commit comments