From b96880c40d48f2510d6b69ae9941e7f0822df340 Mon Sep 17 00:00:00 2001 From: Trevor Porter Date: Mon, 28 Nov 2022 13:54:02 +0000 Subject: [PATCH] Correct span name (#1303) --- rust/agents/scraper/src/chain_scraper/sync.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/agents/scraper/src/chain_scraper/sync.rs b/rust/agents/scraper/src/chain_scraper/sync.rs index b42f69ea5..56d9dfb73 100644 --- a/rust/agents/scraper/src/chain_scraper/sync.rs +++ b/rust/agents/scraper/src/chain_scraper/sync.rs @@ -105,7 +105,7 @@ impl Syncer { } /// Sync contract and other blockchain data with the current chain state. - #[instrument(skip(self), fields(chain_name = self.chain_name(), chink_size = self.chunk_size))] + #[instrument(skip(self), fields(chain_name = self.chain_name(), chunk_size = self.chunk_size))] pub async fn run(mut self) -> Result<()> { let start_block = self.sync_cursor.current_position(); info!(from = start_block, "Resuming chain sync");