From e8002ee5e04d69b3e66d914eb4f9e4d351794b8b Mon Sep 17 00:00:00 2001 From: erhant Date: Tue, 7 Jul 2026 10:49:01 +0300 Subject: [PATCH] chore: fix typos, enable ignored test --- integration_tests/tests/bridge.rs | 1 - lez/indexer/core/src/lib.rs | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/integration_tests/tests/bridge.rs b/integration_tests/tests/bridge.rs index a8fff35e..67c75abc 100644 --- a/integration_tests/tests/bridge.rs +++ b/integration_tests/tests/bridge.rs @@ -561,7 +561,6 @@ fn create_zone_indexer_observer( /// /// TODO: Integration-level park testing (publishing a bad block to force a stall) is a follow-up /// needing fault injection support in the test harness. -#[ignore = "requires the full local stack (bedrock + sequencer + indexer)"] #[test] async fn indexer_status_rpc_reports_caught_up_with_no_stall() -> anyhow::Result<()> { use indexer_service_rpc::RpcClient as _; diff --git a/lez/indexer/core/src/lib.rs b/lez/indexer/core/src/lib.rs index e793c8a1..029de321 100644 --- a/lez/indexer/core/src/lib.rs +++ b/lez/indexer/core/src/lib.rs @@ -42,7 +42,7 @@ enum ChainConsistency { Inconsistent(BlockMismatch), } -/// The differing pair behind a [`ChainConsistenty::Inconsistent`]: our stored +/// The differing pair behind a [`ChainConsistency::Inconsistent`]: our stored /// block vs. the block the channel serves at the same id, as `(block_id, hash)`. struct BlockMismatch { ours: (u64, HashType), @@ -150,7 +150,7 @@ impl IndexerCore { return Ok(ChainConsistency::Inconclusive); }; - // copare the block w.r.t hashes + // compare the block w.r.t hashes let comparison_result = if ours.header.hash == channel.header.hash { ChainConsistency::Consistent } else {