From 9b6ff55b2d8f2cd1a38feb30c55bc939a7f8fd0a Mon Sep 17 00:00:00 2001 From: Jannis Pohlmann Date: Wed, 25 Oct 2023 10:09:40 +0200 Subject: [PATCH] chore: fix outdated comment --- common/src/subgraph_client/client.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/common/src/subgraph_client/client.rs b/common/src/subgraph_client/client.rs index f61179de..5d820d91 100644 --- a/common/src/subgraph_client/client.rs +++ b/common/src/subgraph_client/client.rs @@ -84,9 +84,7 @@ impl DeploymentClient { } } -/// Network subgraph query wrapper -/// -/// This is Arc internally, so it can be cloned and shared between threads. +/// Client for a subgraph that can fall back from a local deployment to a remote query URL pub struct SubgraphClient { local_client: Option, remote_client: DeploymentClient,