Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sveitser committed Dec 5, 2024
1 parent 0862ca7 commit 1b2ccd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions utils/src/deployer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,13 @@ use ethers::{
utils::hex,
};
use futures::future::{BoxFuture, FutureExt};
use hotshot::types::SignatureKey;
use hotshot_contract_adapter::light_client::{
LightClientConstructorArgs, ParsedLightClientState, ParsedStakeTableState,
};
use std::sync::Arc;
use std::{collections::HashMap, io::Write, ops::Deref};
use url::Url;

use crate::stake_table::PermissionedStakeTableConfig;

/// Set of predeployed contracts.
#[derive(Clone, Debug, Parser)]
pub struct DeployedContracts {
Expand Down
4 changes: 2 additions & 2 deletions utils/src/stake_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
/// The initial stake table is passed to the permissioned stake table contract
/// on deployment.
use contract_bindings::permissioned_stake_table::NodeInfo;
use hotshot::types::{BLSPubKey, SignatureKey};
use hotshot_contract_adapter::stake_table::{NodeInfoJf, ParsedEdOnBN254Point};
use hotshot::types::BLSPubKey;
use hotshot_contract_adapter::stake_table::NodeInfoJf;
use hotshot_types::network::PeerConfigKeys;
use std::{fs, path::Path};

Expand Down

0 comments on commit 1b2ccd5

Please sign in to comment.