Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix easy compile warns #240

Merged
merged 2 commits into from
Feb 16, 2024
Merged
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: 1 addition & 4 deletions ikura/chain/node/src/chain_spec/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
use cumulus_primitives_core::ParaId;
use ikura_kusama_runtime::Runtime;
use ikura_primitives::{AccountId, AuraId, Signature};
use ikura_test_runtime::{
Multiplier, Runtime as TestRuntime, EXISTENTIAL_DEPOSIT as TEST_EXISTENTIAL_DEPOSIT,
};
use ikura_test_runtime::{Multiplier, EXISTENTIAL_DEPOSIT as TEST_EXISTENTIAL_DEPOSIT};
use sc_chain_spec::{ChainSpecExtension, ChainSpecGroup};
use sc_service::ChainType;
use serde::{Deserialize, Serialize};
Expand Down
1 change: 1 addition & 0 deletions ikura/chain/node/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ pub enum Subcommand {
/// Export the genesis head-data of the parachain.
///
/// Head data is the encoded block header.
#[clap(alias = "export-genesis-state")]
ExportGenesisHead(cumulus_client_cli::ExportGenesisHeadCommand),

/// Export the genesis wasm of the parachain.
Expand Down
1 change: 0 additions & 1 deletion ikura/chain/pallets/length-fee-adjustment/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ pub mod pallet {
use frame_system::pallet_prelude::*;
use pallet_transaction_payment::{Multiplier, OnChargeTransaction};
use polkadot_primitives::v6::{BlockNumber as RelayChainBlockNumber, PersistedValidationData};
use sp_arithmetic::FixedU128;
use sp_runtime::{
traits::{Get, One, Zero},
FixedPointNumber, Perquintill, SaturatedConversion, Saturating,
Expand Down
Loading