From 96e1f3ece3c8157dd39f4adbf83dcfbb5bcb6f30 Mon Sep 17 00:00:00 2001 From: Arsenii Kulikov Date: Thu, 28 Nov 2024 20:28:20 +0400 Subject: [PATCH] fix --- crates/ethereum/node/tests/e2e/p2p.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ethereum/node/tests/e2e/p2p.rs b/crates/ethereum/node/tests/e2e/p2p.rs index 2d56d06434618..343521ef8eb79 100644 --- a/crates/ethereum/node/tests/e2e/p2p.rs +++ b/crates/ethereum/node/tests/e2e/p2p.rs @@ -126,7 +126,7 @@ async fn test_long_reorg() -> eyre::Result<()> { // Reorg first node from 100th block to new 60th block. first_node.sync_to(second_node.block_hash(60)).await?; - // Advance second node 20 blocks and ensure that first noce is able to follow it. + // Advance second node 20 blocks and ensure that first node is able to follow it. advance_with_random_transactions(&mut second_node, 20, &mut rng, true).await?; first_node.sync_to(second_node.block_hash(80)).await?;