Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
crStiv authored Dec 20, 2024
1 parent 79527ca commit 03a9c90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chain/chain/src/stateless_validation/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub static CHUNK_STATE_WITNESS_ENCODE_TIME: LazyLock<HistogramVec> = LazyLock::n
pub static PROCESS_CONTRACT_CODE_REQUEST_TIME: LazyLock<HistogramVec> = LazyLock::new(|| {
try_create_histogram_vec(
"near_process_contract_code_request_time",
"Total time taken to process contract code reuqest from a chunk validator",
"Total time taken to process contract code request from a chunk validator",
&["shard_id"],
Some(exponential_buckets(0.001, 2.0, 10).unwrap()),
)
Expand All @@ -73,7 +73,7 @@ pub static SHADOW_CHUNK_VALIDATION_FAILED_TOTAL: LazyLock<IntCounter> = LazyLock
pub static CHUNK_WITNESS_VALIDATION_FAILED_TOTAL: LazyLock<IntCounterVec> = LazyLock::new(|| {
try_create_int_counter_vec(
"near_chunk_witness_validation_failed_total",
"Witnesss validation failure count",
"Witness validation failure count",
&["shard_id", "error"],
)
.unwrap()
Expand Down

0 comments on commit 03a9c90

Please sign in to comment.