Correct span name (#1303)

pull/1328/head
Trevor Porter 2 years ago committed by GitHub
parent 551af4c12e
commit b96880c40d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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");

Loading…
Cancel
Save