Skip to content

Commit

Permalink
Remove imports
Browse files Browse the repository at this point in the history
  • Loading branch information
elmattic committed Oct 7, 2024
1 parent 71ec51b commit 6a0afdb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cli_shared/cli/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

use crate::db::db_engine::DbConfig;
use crate::libp2p::Libp2pConfig;
use crate::{chain_sync::SyncConfig, networks::ChainConfig, networks::NetworkChain};
use crate::{chain_sync::SyncConfig, networks::NetworkChain};
use serde::{Deserialize, Serialize};
use std::path::PathBuf;

Expand Down
2 changes: 1 addition & 1 deletion src/cli_shared/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub mod logger;
use crate::cli_shared::cli::{find_config_path, Config, ConfigPath};
use crate::db::db_engine::db_root;
use crate::db::CAR_DB_DIR_NAME;
use crate::networks::{ChainConfig, NetworkChain};
use crate::networks::NetworkChain;
use crate::utils::io::read_toml;
use std::path::PathBuf;

Expand Down
1 change: 0 additions & 1 deletion src/state_manager/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ use crate::chain::{
ChainStore, HeadChange,
};
use crate::chain_sync::SyncConfig;
use crate::cli_shared::cli::Config;
use crate::interpreter::{
resolve_to_key_addr, ApplyResult, BlockMessages, CalledAt, ExecutionContext,
IMPLICIT_MESSAGE_GAS_LIMIT, VM,
Expand Down

0 comments on commit 6a0afdb

Please sign in to comment.