We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59e0ee2 commit 0152748Copy full SHA for 0152748
crates/node/tests/e2e.rs
@@ -1428,6 +1428,10 @@ async fn can_handle_l1_message_reorg() -> eyre::Result<()> {
1428
)
1429
.await?;
1430
1431
+ // Assert both nodes are at block 10.
1432
+ assert_latest_block_on_rpc_by_number(&node0, 10).await;
1433
+ assert_latest_block_on_rpc_by_number(&node1, 10).await;
1434
+
1435
// Since the L1 reorg reverted the L1 message included in block 11, the sequencer
1436
// should produce a new block at height 11.
1437
node0_rnm_handle.build_block();
0 commit comments