mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-11 21:11:07 +00:00
fix new warning in nightly (#14334)
* fix new warning * Too soon * Explicitly import
This commit is contained in:
@@ -18,7 +18,6 @@
|
||||
|
||||
//! Utilities to build a `TestClient` for `kitchensink-runtime`.
|
||||
|
||||
use sc_service::client;
|
||||
use sp_runtime::BuildStorage;
|
||||
/// Re-export test-client utilities.
|
||||
pub use substrate_test_client::*;
|
||||
|
||||
@@ -33,7 +33,7 @@ use jsonrpsee::{
|
||||
types::SubscriptionResult,
|
||||
};
|
||||
|
||||
use sc_rpc_api::{state::ReadProof, DenyUnsafe};
|
||||
use sc_rpc_api::DenyUnsafe;
|
||||
use sp_core::{
|
||||
storage::{PrefixedStorageKey, StorageChangeSet, StorageData, StorageKey},
|
||||
Bytes,
|
||||
|
||||
@@ -319,7 +319,7 @@ use sp_staking::{
|
||||
use sp_std::{collections::btree_map::BTreeMap, prelude::*};
|
||||
pub use weights::WeightInfo;
|
||||
|
||||
pub use pallet::{pallet::*, *};
|
||||
pub use pallet::{pallet::*, UseNominatorsAndValidatorsMap, UseValidatorsMap};
|
||||
|
||||
pub(crate) const LOG_TARGET: &str = "runtime::staking";
|
||||
|
||||
|
||||
@@ -30,8 +30,7 @@ pub use substrate_test_runtime as runtime;
|
||||
|
||||
pub use self::block_builder_ext::BlockBuilderExt;
|
||||
|
||||
use sp_core::storage::{ChildInfo, Storage, StorageChild};
|
||||
use substrate_test_client::sc_executor::WasmExecutor;
|
||||
use sp_core::storage::ChildInfo;
|
||||
use substrate_test_runtime::genesismap::GenesisStorageBuilder;
|
||||
|
||||
/// A prelude to import in tests.
|
||||
|
||||
Reference in New Issue
Block a user