Skip to content

Commit

Permalink
fix empty help msg
Browse files Browse the repository at this point in the history
  • Loading branch information
modship committed Dec 12, 2024
1 parent fc07bc5 commit ef95780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion massa-metrics/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ impl MassaMetrics {
actual_counter.set(count as i64);
} else {
let label = format!("network_version_votes_{}", version);
let counter = IntGauge::new(label, "").unwrap();
let counter = IntGauge::new(label, "vote counter for network version").unwrap();
counter.set(count as i64);
let _ = prometheus::register(Box::new(counter.clone()));
write.insert(version, counter);
Expand Down

0 comments on commit ef95780

Please sign in to comment.