Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
neysofu committed Dec 15, 2024
1 parent c97574a commit 782b88e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/indexer_client/src/real_indexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ impl IndexerClient for RealIndexer {

async fn ping(self: Arc<Self>) -> anyhow::Result<()> {
let request = gql_types::Typename::build_query(gql_types::typename::Variables);
self.graphql_query(request).await?;
self.graphql_query::<_, serde_json::Value>(request).await?;
Ok(())
}

Expand Down

0 comments on commit 782b88e

Please sign in to comment.