Skip to content

Commit

Permalink
remove unnecessary dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Chralt98 committed Nov 24, 2022
1 parent 0c18c20 commit 071bf7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ path = "./src/main.rs"
substrate-build-script-utils = { branch = "polkadot-v0.9.26", git = "https://github.com/paritytech/substrate" }

[dependencies]
frame-support = { branch = "polkadot-v0.9.26", git = "https://github.com/paritytech/substrate" }
pallet-transaction-payment = { branch = "polkadot-v0.9.26", git = "https://github.com/paritytech/substrate" }
pallet-transaction-payment-rpc = { branch = "polkadot-v0.9.26", git = "https://github.com/paritytech/substrate" }
pallet-transaction-payment-rpc-runtime-api = { branch = "polkadot-v0.9.26", git = "https://github.com/paritytech/substrate" }
Expand Down
6 changes: 3 additions & 3 deletions node/src/chain_spec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ macro_rules! generate_generic_genesis_function {
// Common genesis
advisory_committee: Default::default(),
advisory_committee_membership: $runtime::AdvisoryCommitteeMembershipConfig {
members: frame_support::bounded_vec![],
members: vec![].try_into().unwrap(),
phantom: Default::default(),
},
#[cfg(not(feature = "parachain"))]
Expand All @@ -130,7 +130,7 @@ macro_rules! generate_generic_genesis_function {
},
council: Default::default(),
council_membership: $runtime::CouncilMembershipConfig {
members: frame_support::bounded_vec![],
members: vec![].try_into().unwrap(),
phantom: Default::default(),
},
#[cfg(feature = "parachain")]
Expand Down Expand Up @@ -165,7 +165,7 @@ macro_rules! generate_generic_genesis_function {
system: $runtime::SystemConfig { code: wasm_binary.to_vec() },
technical_committee: Default::default(),
technical_committee_membership: $runtime::TechnicalCommitteeMembershipConfig {
members: frame_support::bounded_vec![],
members: vec![].try_into().unwrap(),
phantom: Default::default(),
},
treasury: Default::default(),
Expand Down

0 comments on commit 071bf7e

Please sign in to comment.