From 3ecd98a1ceca1fe02c3a4cce9df7bbf854aa05e5 Mon Sep 17 00:00:00 2001 From: Romashka Date: Wed, 18 Dec 2024 15:47:56 +0200 Subject: [PATCH 1/2] typo-Update attributes_deposited.rs --- src/common/attributes_deposited.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/attributes_deposited.rs b/src/common/attributes_deposited.rs index 726dc125..54b52354 100644 --- a/src/common/attributes_deposited.rs +++ b/src/common/attributes_deposited.rs @@ -5,7 +5,7 @@ use ethers::{ use eyre::Result; use lazy_static::lazy_static; -/// Represents the attributes deposited transcation call +/// Represents the attributes deposited transaction call #[derive(Debug)] pub struct AttributesDepositedCall { /// block number From 79231610dbfc9e3b9c5968a2ec52ef78cb989387 Mon Sep 17 00:00:00 2001 From: Romashka Date: Wed, 18 Dec 2024 15:48:21 +0200 Subject: [PATCH 2/2] typo-Update chain_watcher.rs --- src/l1/chain_watcher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/l1/chain_watcher.rs b/src/l1/chain_watcher.rs index 0ba9f9df..91ddc938 100644 --- a/src/l1/chain_watcher.rs +++ b/src/l1/chain_watcher.rs @@ -38,7 +38,7 @@ const BLOB_CARRYING_TRANSACTION_TYPE: u64 = 3; pub type BatcherTransactionData = Bytes; /// Handles watching the L1 chain and monitoring for new blocks, deposits, -/// and batcher transactions. The monitoring loop is spawned in a seperate +/// and batcher transactions. The monitoring loop is spawned in a separate /// task and communication happens via the internal channels. When ChainWatcher /// is dropped, the monitoring task is automatically aborted. pub struct ChainWatcher {