Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions client/consensus/src/consensus_orchestrator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ use {
sp_runtime::traits::Block as BlockT,
};

pub use {
sc_consensus_aura::{slot_duration, AuraVerifier, BuildAuraWorkerParams, SlotProportion},
sc_consensus_slots::InherentDataProviderExt,
};

#[async_trait::async_trait]
pub trait RetrieveAuthoritiesFromOrchestrator<Block: BlockT, ExtraArgs, A>: Send + Sync {
/// Create the inherent data providers at the given `parent` block using the given `extra_args`.
Expand Down
5 changes: 0 additions & 5 deletions container-chains/templates/frontier/node/src/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@
// You should have received a copy of the GNU General Public License
// along with Tanssi. If not, see <http://www.gnu.org/licenses/>.

// Frontier
pub use {
fc_consensus::FrontierBlockImport,
fc_rpc_core::types::{FeeHistoryCache, FeeHistoryCacheLimit, FilterPool},
};
// Local
use container_chain_template_frontier_runtime::opaque::Block;

Expand Down
2 changes: 1 addition & 1 deletion container-chains/templates/frontier/node/src/rpc/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use {
// Frontier
use fc_db::Backend as FrontierBackend;
pub use {
fc_rpc::{EthBlockDataCacheTask, EthConfig, OverrideHandle, StorageOverride},
fc_rpc::{EthBlockDataCacheTask, OverrideHandle},
fc_rpc_core::types::{FeeHistoryCache, FeeHistoryCacheLimit, FilterPool},
fc_storage::overrides_handle,
};
Expand Down
1 change: 0 additions & 1 deletion container-chains/templates/frontier/node/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,6 @@ pub async fn start_dev_node(
let backend = node_builder.backend.clone();
let max_past_logs = rpc_config.max_past_logs;
let overrides = overrides;
let fee_history_cache = fee_history_cache;
let block_data_cache = block_data_cache;

Box::new(move |deny_unsafe, subscription_task_executor| {
Expand Down
2 changes: 1 addition & 1 deletion container-chains/templates/simple/node/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#![warn(missing_docs)]

pub use sc_rpc::{DenyUnsafe, SubscriptionTaskExecutor};
pub use sc_rpc::DenyUnsafe;

use {
container_chain_template_simple_runtime::{opaque::Block, AccountId, Hash, Index as Nonce},
Expand Down
2 changes: 1 addition & 1 deletion node/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#![warn(missing_docs)]

pub use sc_rpc::{DenyUnsafe, SubscriptionTaskExecutor};
pub use sc_rpc::DenyUnsafe;
use {
cumulus_primitives_core::ParaId,
dancebox_runtime::{opaque::Block, AccountId, Index as Nonce},
Expand Down
2 changes: 0 additions & 2 deletions primitives/author-noting-inherent/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@

#[cfg(feature = "std")]
mod client_side;
#[cfg(feature = "std")]
pub use client_side::*;

#[cfg(feature = "std")]
mod mock;
Expand Down
4 changes: 2 additions & 2 deletions runtime/flashbox/tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ use {
pub use flashbox_runtime::{
AccountId, AuthorNoting, AuthorityAssignment, AuthorityMapping, Balance, Balances,
CollatorAssignment, Configuration, DataPreservers, InflationRewards, Initializer,
Invulnerables, MinimumSelfDelegation, ParachainInfo, Proxy, ProxyType, Registrar,
RewardsPortion, Runtime, RuntimeCall, RuntimeEvent, ServicesPayment, Session, System,
Invulnerables, ParachainInfo, Proxy, ProxyType, Registrar, RewardsPortion, Runtime,
RuntimeCall, ServicesPayment, Session, System,
};

pub fn session_to_block(n: u32) -> u32 {
Expand Down
4 changes: 2 additions & 2 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.70.0"
components = [ "rustfmt", "clippy" ]
channel = "1.75.0"
components = [ "rustfmt", "clippy", "rust-src" ]
targets = [ "wasm32-unknown-unknown" ]
profile = "minimal"