From d230105b98865408c31f6a9039d67ef4c81597c1 Mon Sep 17 00:00:00 2001 From: Helen Date: Wed, 12 Feb 2025 12:51:40 +0300 Subject: [PATCH 1/4] lib.rs --- common/lighthouse_metrics/src/lib.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/common/lighthouse_metrics/src/lib.rs b/common/lighthouse_metrics/src/lib.rs index 98973de..1e52b9d 100644 --- a/common/lighthouse_metrics/src/lib.rs +++ b/common/lighthouse_metrics/src/lib.rs @@ -5,7 +5,7 @@ //! //! - `Histogram`: used with `start_timer(..)` and `stop_timer(..)` to record durations (e.g., //! block processing time). -//! - `IncCounter`: used to represent an ideally ever-growing, never-shrinking integer (e.g., +//! - `IntCounter`: used to represent an ideally ever-growing, never-shrinking integer (e.g., //! number of block processing requests). //! - `IntGauge`: used to represent an varying integer (e.g., number of attestations per block). //! @@ -78,7 +78,7 @@ pub fn try_create_int_counter(name: &str, help: &str) -> Result { Ok(counter) } -/// Attempts to create an `IntGauge`, returning `Err` if the registry does not accept the counter +/// Attempts to create an `IntGauge`, returning `Err` if the registry does not accept the gauge /// (potentially due to naming conflict). pub fn try_create_int_gauge(name: &str, help: &str) -> Result { let opts = Opts::new(name, help); @@ -87,7 +87,7 @@ pub fn try_create_int_gauge(name: &str, help: &str) -> Result { Ok(gauge) } -/// Attempts to create a `Gauge`, returning `Err` if the registry does not accept the counter +/// Attempts to create a `Gauge`, returning `Err` if the registry does not accept the gauge /// (potentially due to naming conflict). pub fn try_create_float_gauge(name: &str, help: &str) -> Result { let opts = Opts::new(name, help); @@ -96,7 +96,7 @@ pub fn try_create_float_gauge(name: &str, help: &str) -> Result { Ok(gauge) } -/// Attempts to create a `Histogram`, returning `Err` if the registry does not accept the counter +/// Attempts to create a `Histogram`, returning `Err` if the registry does not accept the histogram /// (potentially due to naming conflict). pub fn try_create_histogram(name: &str, help: &str) -> Result { let opts = HistogramOpts::new(name, help); @@ -105,7 +105,7 @@ pub fn try_create_histogram(name: &str, help: &str) -> Result { Ok(histogram) } -/// Attempts to create a `HistogramVec`, returning `Err` if the registry does not accept the counter +/// Attempts to create a `HistogramVec`, returning `Err` if the registry does not accept the histogram /// (potentially due to naming conflict). pub fn try_create_histogram_vec( name: &str, @@ -144,7 +144,7 @@ pub fn try_create_float_gauge_vec( Ok(counter_vec) } -/// Attempts to create a `IntCounterVec`, returning `Err` if the registry does not accept the gauge +/// Attempts to create a `IntCounterVec`, returning `Err` if the registry does not accept the counter /// (potentially due to naming conflict). pub fn try_create_int_counter_vec( name: &str, From 608195f536138daab010c5db2c2278c6a1781609 Mon Sep 17 00:00:00 2001 From: Helen Date: Wed, 12 Feb 2025 12:55:21 +0300 Subject: [PATCH 2/4] lib.rs --- common/append_merkle/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/append_merkle/src/lib.rs b/common/append_merkle/src/lib.rs index ccb7f6d..0999501 100644 --- a/common/append_merkle/src/lib.rs +++ b/common/append_merkle/src/lib.rs @@ -34,7 +34,7 @@ pub struct AppendMerkleTree> { /// `revert_to` can reset the state correctly when needed. min_depth: Option, /// Used to compute the correct padding hash. - /// 0 for `pora_chunk_merkle` and 10 for not-first `last_chunk_merkle`. + /// 0 for `first_chunk_merkle` and 10 for not-first `last_chunk_merkle`. leaf_height: usize, _a: PhantomData, } From 14226dbddc9d5dbea40d3d5e8108da0be3bc351f Mon Sep 17 00:00:00 2001 From: Helen Date: Wed, 12 Feb 2025 12:57:08 +0300 Subject: [PATCH 3/4] hashset_delay.rs --- common/hashset_delay/src/hashset_delay.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hashset_delay/src/hashset_delay.rs b/common/hashset_delay/src/hashset_delay.rs index 052d71f..104fc9a 100644 --- a/common/hashset_delay/src/hashset_delay.rs +++ b/common/hashset_delay/src/hashset_delay.rs @@ -61,7 +61,7 @@ where self.insert_at(key, self.default_entry_timeout); } - /// Inserts an entry that will expire at a given instant. If the entry already exists, the + /// Inserts an entry that will expire at a given duration. If the entry already exists, the /// timeout is updated. pub fn insert_at(&mut self, key: K, entry_duration: Duration) { if self.contains(&key) { From 287f8b9baf0ff9ba812a581cf6c7b55012b55184 Mon Sep 17 00:00:00 2001 From: Helen Grachtz Date: Mon, 24 Mar 2025 21:48:47 +0300 Subject: [PATCH 4/4] Update lib.rs --- common/append_merkle/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/append_merkle/src/lib.rs b/common/append_merkle/src/lib.rs index 0999501..ccb7f6d 100644 --- a/common/append_merkle/src/lib.rs +++ b/common/append_merkle/src/lib.rs @@ -34,7 +34,7 @@ pub struct AppendMerkleTree> { /// `revert_to` can reset the state correctly when needed. min_depth: Option, /// Used to compute the correct padding hash. - /// 0 for `first_chunk_merkle` and 10 for not-first `last_chunk_merkle`. + /// 0 for `pora_chunk_merkle` and 10 for not-first `last_chunk_merkle`. leaf_height: usize, _a: PhantomData, }