From 59e5176b1d168598953c6fcb4c39917e7e501922 Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:13:26 +0100 Subject: [PATCH 1/3] 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 495d16216517bf2a964515fa81048d1fc83d41fc Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:13:51 +0100 Subject: [PATCH 2/3] 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 { From 4ce2b28cfdd8b207d6d0623d64da93aa8e9cac98 Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:15:11 +0100 Subject: [PATCH 3/3] Update mod.rs --- src/l1/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/l1/mod.rs b/src/l1/mod.rs index c09eb707..8c6abde4 100644 --- a/src/l1/mod.rs +++ b/src/l1/mod.rs @@ -1,4 +1,4 @@ -/// Module reposnsible for listening to the L1 chain and monitoring for new +/// Module responsible for listening to the L1 chain and monitoring for new /// blocks and events. pub mod chain_watcher; pub use chain_watcher::{BlockUpdate, ChainWatcher};