Skip to content

Commit 81970e2

Browse files
committed
chore: clippy
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent 3884ce5 commit 81970e2

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

crates/dips/src/server.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33

44
use std::{sync::Arc, time::Duration};
55

6+
use anyhow::anyhow;
7+
use async_trait::async_trait;
8+
use thegraph_core::alloy::{dyn_abi::Eip712Domain, primitives::Address};
9+
use tonic::{Request, Response, Status};
10+
use uuid::Uuid;
11+
612
use crate::{
713
proto::indexer::graphprotocol::indexer::dips::{
814
dips_service_server::DipsService, CancelAgreementRequest, CancelAgreementResponse,
@@ -11,11 +17,6 @@ use crate::{
1117
store::AgreementStore,
1218
validate_and_cancel_agreement, validate_and_create_agreement, DipsError,
1319
};
14-
use anyhow::anyhow;
15-
use async_trait::async_trait;
16-
use thegraph_core::alloy::{dyn_abi::Eip712Domain, primitives::Address};
17-
use tonic::{Request, Response, Status};
18-
use uuid::Uuid;
1920

2021
#[derive(Debug)]
2122
pub struct DipsServer {

0 commit comments

Comments
 (0)