Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Jan 8, 2025
1 parent f41c4f7 commit 64b5824
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/freeze/src/datasets/balance_diffs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ impl CollectByBlock for BalanceDiffs {
let include_txs = schema.has_column("transaction_hash");
let (bn, txs, traces) =
source.trace_block_state_diffs(request.block_number()? as u32, include_txs).await?;
let trace_resuls = traces.into_iter().map(|t| t.full_trace).collect();
Ok((bn, txs, trace_resuls))
let trace_results = traces.into_iter().map(|t| t.full_trace).collect();
Ok((bn, txs, trace_results))
}

fn transform(response: Self::Response, columns: &mut Self, query: &Arc<Query>) -> R<()> {
Expand Down

0 comments on commit 64b5824

Please sign in to comment.