Skip to content

Commit

Permalink
Fix reporting of stats
Browse files Browse the repository at this point in the history
  • Loading branch information
SupernaviX committed Oct 28, 2024
1 parent 563f370 commit 26bac0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sim-rs/sim-cli/src/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,11 @@ impl EventMonitor {
);
info!(
"Each transaction was included in an average of {} IBs (stddev {}).",
txs_per_ib.mean, txs_per_ib.std_dev,
ibs_per_tx.mean, ibs_per_tx.std_dev,
);
info!(
"Each IB contained an average of {} transactions (stddev {}).",
ibs_per_tx.mean, ibs_per_tx.std_dev,
txs_per_ib.mean, txs_per_ib.std_dev,
);
info!(
"Each transaction took an average of {}s (stddev {}) to reach an IB.",
Expand Down

0 comments on commit 26bac0e

Please sign in to comment.