Skip to content

Commit

Permalink
docs: correct requested_empty_payload metric docs (#11119)
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg authored Sep 23, 2024
1 parent 560b061 commit a2b8baf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/payload/basic/src/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ use reth_metrics::{metrics::Counter, Metrics};
#[derive(Metrics)]
#[metrics(scope = "payloads")]
pub(crate) struct PayloadBuilderMetrics {
/// Number of active jobs
/// Total number of times an empty payload was returned because a built one was not ready.
pub(crate) requested_empty_payload: Counter,
/// Total number of initiated payload build attempts
/// Total number of initiated payload build attempts.
pub(crate) initiated_payload_builds: Counter,
/// Total number of failed payload build attempts
/// Total number of failed payload build attempts.
pub(crate) failed_payload_builds: Counter,
}

Expand Down

0 comments on commit a2b8baf

Please sign in to comment.