From 98ce52d63b622078b51dcc532a31425021cd3a82 Mon Sep 17 00:00:00 2001 From: Sean Chen Date: Wed, 21 Feb 2024 11:14:20 -0600 Subject: [PATCH] Better organize some dependencies --- crates/cli/cli/src/commands/query/packet/pending_acks.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/cli/cli/src/commands/query/packet/pending_acks.rs b/crates/cli/cli/src/commands/query/packet/pending_acks.rs index 6fa210cc8..939734afa 100644 --- a/crates/cli/cli/src/commands/query/packet/pending_acks.rs +++ b/crates/cli/cli/src/commands/query/packet/pending_acks.rs @@ -1,11 +1,12 @@ -use cgp_core::CanRaiseError; -use hermes_cosmos_relayer::contexts::chain::CosmosChain; use oneline_eyre::eyre::{eyre, Context}; +use cgp_core::CanRaiseError; + use hermes_cli_framework::command::CommandRunner; use hermes_cli_framework::output::{json, Output}; use hermes_cosmos_client_components::traits::chain_handle::HasBlockingChainHandle; use hermes_cosmos_relayer::contexts::builder::CosmosBuilder; +use hermes_cosmos_relayer::contexts::chain::CosmosChain; use ibc_relayer::chain::counterparty::{channel_connection_client, unreceived_acknowledgements}; use ibc_relayer::path::PathIdentifiers;