Skip to content

Commit

Permalink
Fix an undeclared crate name error when the stats feature is enabled
Browse files Browse the repository at this point in the history
This was missed during the transition from `jubjub` to `ironfish_jubjub`
  • Loading branch information
andiflabs committed Oct 30, 2024
1 parent 41813ec commit 8692bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ironfish-rust-nodejs/src/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::sync::Once;
use std::thread;

fn print_stats(colors: bool) {
let ecpm_stats = jubjub::stats();
let ecpm_stats = ironfish_jubjub::stats();
let note_stats = ironfish::merkle_note::stats::get();

// Write the stats in a buffer first, then write the buffer to stderr. The goal of the buffer
Expand Down

0 comments on commit 8692bb2

Please sign in to comment.