Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/service/src/middleware/prometheus_metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ where

#[pin_project]
pub struct PrometheusMetricsFuture<F> {
/// Instant at which we started the requst.
/// Instant at which we started the request.
timer: Option<Instant>,

histogram: prometheus::HistogramVec,
Expand Down
2 changes: 1 addition & 1 deletion crates/service/src/routes/static_subgraph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl From<&StaticSubgraphError> for StatusCode {

impl IntoResponse for StaticSubgraphError {
fn into_response(self) -> axum::response::Response {
tracing::error!(%self, "StaticSubgraphError occoured.");
tracing::error!(%self, "StaticSubgraphError occurred.");
(
StatusCode::from(&self),
Json(json! {{
Expand Down
2 changes: 1 addition & 1 deletion crates/service/src/tap/checks/value_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ impl Check<TapReceipt> for MinimumValue {
value,
expected_value,
should_accept,
"Evaluating mininum query fee."
"Evaluating minimum query fee."
);

if should_accept {
Expand Down