Skip to content

Commit

Permalink
fix(inclusion_monitor): update to payload API
Browse files Browse the repository at this point in the history
  • Loading branch information
alextes committed Oct 11, 2023
1 parent dfaffd8 commit 1530442
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 @@ -101,7 +101,7 @@ impl LokiClient {

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

Expand Down

0 comments on commit 1530442

Please sign in to comment.