Skip to content

Commit

Permalink
Set correct statistic when indexing transactions (#2913)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Dec 26, 2023
1 parent 72ad9fc commit b40bc7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ impl Index {

Self::set_statistic(&mut statistics, Statistic::IndexRunes, u64::from(index_runes))?;
Self::set_statistic(&mut statistics, Statistic::IndexSats, u64::from(index_sats))?;
Self::set_statistic(&mut statistics, Statistic::IndexSats, u64::from(index_transactions))?;
Self::set_statistic(&mut statistics, Statistic::IndexTransactions, u64::from(index_transactions))?;
Self::set_statistic(&mut statistics, Statistic::Schema, SCHEMA_VERSION)?;
}

Expand Down

0 comments on commit b40bc7f

Please sign in to comment.