Skip to content

Commit

Permalink
refactor(loki_client): drop unneeded cast
Browse files Browse the repository at this point in the history
  • Loading branch information
alextes committed Dec 13, 2023
1 parent bdeb91a commit 156003f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/phoenix/inclusion_monitor/loki_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ impl LokiClient {
}
}

pub async fn payload_logs(&self, slot: &i32) -> anyhow::Result<Option<PayloadLogStats>> {
pub async fn payload_logs(&self, slot: i64) -> anyhow::Result<Option<PayloadLogStats>> {
let query = format!(
r#"{{app="payload-api"}} |= `"slot":{slot}` |= "block published through beacon node" | json"#
);
Expand Down

0 comments on commit 156003f

Please sign in to comment.