Skip to content

Commit

Permalink
fix nit
Browse files Browse the repository at this point in the history
  • Loading branch information
programskillforverification committed Oct 16, 2024
1 parent f0e37bc commit c7b31af
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,7 @@ bridge-hub-common = { workspace = true }

[dev-dependencies]
bridge-hub-test-utils = { workspace = true, default-features = true }
bridge-runtime-common = { features = [
"integrity-test",
], workspace = true, default-features = true }
bridge-runtime-common = { features = ["integrity-test"], workspace = true, default-features = true }
pallet-bridge-relayers = { features = ["integrity-test"], workspace = true }
snowbridge-runtime-test-common = { workspace = true, default-features = true }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,7 @@ snowbridge-runtime-common = { workspace = true }

[dev-dependencies]
bridge-hub-test-utils = { workspace = true, default-features = true }
bridge-runtime-common = { features = [
"integrity-test",
], workspace = true, default-features = true }
bridge-runtime-common = { features = ["integrity-test"], workspace = true, default-features = true }
pallet-bridge-relayers = { features = ["integrity-test"], workspace = true }
snowbridge-runtime-test-common = { workspace = true, default-features = true }

Expand Down
7 changes: 1 addition & 6 deletions substrate/bin/node/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,7 @@ clap_complete = { optional = true, workspace = true }

node-inspect = { optional = true, workspace = true, default-features = true }

polkadot-sdk = { features = [
"frame-benchmarking-cli",
"sc-cli",
"sc-storage-monitor",
"substrate-build-script-utils",
], optional = true, workspace = true, default-features = true }
polkadot-sdk = { features = ["frame-benchmarking-cli", "sc-cli", "sc-storage-monitor", "substrate-build-script-utils"], optional = true, workspace = true, default-features = true }

[features]
default = ["cli"]
Expand Down
3 changes: 2 additions & 1 deletion substrate/primitives/keyring/src/bandersnatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@

//! A set of well-known keys used for testing.
use crate::ParseKeyringError;
pub use sp_core::bandersnatch;

use crate::ParseKeyringError;
#[cfg(feature = "std")]
use sp_core::bandersnatch::Signature;
use sp_core::{
Expand Down
3 changes: 2 additions & 1 deletion substrate/primitives/keyring/src/ed25519.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@

//! Support code for the runtime. A set of test accounts.
use crate::ParseKeyringError;
pub use sp_core::ed25519;

use crate::ParseKeyringError;
#[cfg(feature = "std")]
use sp_core::ed25519::Signature;
use sp_core::{
Expand Down
3 changes: 2 additions & 1 deletion substrate/primitives/keyring/src/sr25519.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@

//! Support code for the runtime. A set of test accounts.
use crate::ParseKeyringError;
pub use sp_core::sr25519;

use crate::ParseKeyringError;
#[cfg(feature = "std")]
use sp_core::sr25519::Signature;
use sp_core::{
Expand Down

0 comments on commit c7b31af

Please sign in to comment.