Skip to content

Commit e417b5f

Browse files
committed
increase timeout
1 parent fff568f commit e417b5f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/src/utils.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ pub async fn wait_for_l1_message_queue_index_reached(
134134
nodes: &[&NamedProvider],
135135
expected_index: u64,
136136
) -> Result<()> {
137-
let timeout_duration = Duration::from_secs(60);
137+
let timeout_duration = Duration::from_secs(120);
138138
let timeout_secs = timeout_duration.as_secs();
139139

140140
tracing::info!(
@@ -198,7 +198,7 @@ pub async fn wait_for_l1_message_queue_index_reached(
198198
/// * `Ok(())` if all nodes reach the target block within the timeout
199199
/// * `Err` if timeout is reached or any provider call fails
200200
pub async fn wait_for_block(nodes: &[&NamedProvider], target_block: u64) -> Result<()> {
201-
let timeout_duration = Duration::from_secs(60);
201+
let timeout_duration = Duration::from_secs(120);
202202
let timeout_secs = timeout_duration.as_secs();
203203

204204
tracing::info!(

0 commit comments

Comments
 (0)