Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sug0 committed Feb 14, 2023
1 parent 0cb25fb commit c583fbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/src/lib/client/eth_bridge/validator_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ use std::sync::Arc;

use data_encoding::HEXLOWER;
use ethbridge_governance_contract::Governance;
use ethbridge_structs::{Signature, ValidatorSetArgs};
use namada::core::types::storage::Epoch;
use namada::eth_bridge::ethers::abi::{AbiDecode, AbiType, Tokenizable};
use namada::eth_bridge::ethers::providers::{Http, Provider};
use namada::eth_bridge::structs::{Signature, ValidatorSetArgs};
use namada::ledger::queries::RPC;

use crate::cli::args;
Expand Down
4 changes: 3 additions & 1 deletion shared/src/ledger/queries/shell/eth_bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ use namada_core::types::vote_extensions::validator_set_update::{
use namada_core::types::voting_power::FractionalVotingPower;
use namada_ethereum_bridge::parameters::UpgradeableContract;
use namada_ethereum_bridge::storage::eth_bridge_queries::EthBridgeQueries;
use namada_ethereum_bridge::storage::proof::{sort_sigs, EthereumProof};
use namada_ethereum_bridge::storage::proof::{
tokenize_relay_proof, EthereumProof, RelayProof,
};
use namada_ethereum_bridge::storage::vote_tallies::{
eth_msgs_prefix, BODY_KEY_SEGMENT, VOTING_POWER_KEY_SEGMENT,
};
Expand Down

0 comments on commit c583fbe

Please sign in to comment.