From 65ee28ca66bf4014aa55fa8051a6969474aab17d Mon Sep 17 00:00:00 2001 From: Jannis Pohlmann Date: Sat, 2 Dec 2023 00:09:06 +0100 Subject: [PATCH] Squashme: update request handler to thegraph crate --- common/src/indexer_service/http/request_handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/indexer_service/http/request_handler.rs b/common/src/indexer_service/http/request_handler.rs index 7e54c2ba4..14eb7a3b8 100644 --- a/common/src/indexer_service/http/request_handler.rs +++ b/common/src/indexer_service/http/request_handler.rs @@ -11,7 +11,7 @@ use axum::{ TypedHeader, }; use reqwest::StatusCode; -use toolshed::thegraph::DeploymentId; +use thegraph::types::DeploymentId; use tracing::info; use crate::{indexer_service::http::IsAttestable, prelude::AttestationSigner};