From f58ee0fa9037e1386d9160b5d6261d95799b3453 Mon Sep 17 00:00:00 2001 From: Gav Date: Sat, 10 Jun 2023 15:53:35 +0100 Subject: [PATCH 1/4] Voters can initiate proposals on their tracks in Fellowship --- .../src/fellowship/mod.rs | 28 ++++++++++---- .../src/fellowship/origins.rs | 38 +++++++++++++++++++ 2 files changed, 59 insertions(+), 7 deletions(-) diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs index c8442c7c430..7a7adb4be41 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs @@ -23,23 +23,23 @@ use cumulus_primitives_core::Junction::GeneralIndex; use frame_system::EnsureNever; pub use origins::{ pallet_origins as pallet_fellowship_origins, Architects, EnsureCanPromoteTo, EnsureCanRetainAt, - EnsureFellowship, Fellows, Masters, Members, + EnsureFellowship, Fellows, Masters, Members, ToVoice, }; +use pallet_ranked_collective::EnsureOfRank; use xcm_builder::{AliasesIntoAccountId32, LocatableAssetId, PayOverXcm}; - use crate::{ constants, impls::ToParentTreasury, weights, AccountId, Balance, Balances, FellowshipReferenda, GovernanceLocation, PolkadotTreasuryAccount, Preimage, Runtime, RuntimeCall, RuntimeEvent, - Scheduler, DAYS, + Scheduler, DAYS, RuntimeOrigin, }; use frame_support::{ parameter_types, - traits::{EitherOf, EitherOfDiverse, MapSuccess}, + traits::{EitherOf, EitherOfDiverse, MapSuccess, OriginTrait, TryWithMorphedArg}, }; use pallet_xcm::{EnsureXcm, IsVoiceOfBody}; use polkadot_runtime_constants::{time::HOURS, xcm::body::FELLOWSHIP_ADMIN_INDEX}; use sp_core::{ConstU128, ConstU32}; -use sp_runtime::traits::{AccountIdConversion, ConstU16, ConvertToValue, Replace}; +use sp_runtime::traits::{AccountIdConversion, ConstU16, ConvertToValue, Replace, TakeFirst}; use xcm::latest::BodyId; /// The Fellowship members' ranks. @@ -74,8 +74,19 @@ impl pallet_referenda::Config for Runtime { type Scheduler = Scheduler; type Currency = Balances; // Fellows can submit proposals. - type SubmitOrigin = - pallet_ranked_collective::EnsureMember; + type SubmitOrigin = EitherOf< + pallet_ranked_collective::EnsureMember, + MapSuccess< + TryWithMorphedArg< + RuntimeOrigin, + ::PalletsOrigin, + ToVoice, + EnsureOfRank, + (AccountId, u16) + >, + TakeFirst + >, + >; type CancelOrigin = Architects; type KillOrigin = Masters; type Slash = ToParentTreasury; @@ -216,3 +227,6 @@ impl pallet_salary::Config for Runtime { // Total monthly salary budget. type Budget = ConstU128<{ 100_000 * USDT_UNITS }>; } + +#[test] +fn it_builds() {} \ No newline at end of file diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs index 4842f64d485..89c1b54201b 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs @@ -35,22 +35,31 @@ pub mod pallet_origins { #[pallet::origin] pub enum Origin { /// Origin aggregated through weighted votes of those with rank 1 or above; `Success` is 1. + /// Aka the "voice" of all Members. Members, /// Origin aggregated through weighted votes of those with rank 2 or above; `Success` is 2. + /// Aka the "voice" of members at least II Dan. Fellowship2Dan, /// Origin aggregated through weighted votes of those with rank 3 or above; `Success` is 3. + /// Aka the "voice" of all Fellows. Fellows, /// Origin aggregated through weighted votes of those with rank 4 or above; `Success` is 4. + /// Aka the "voice" of members at least IV Dan. Architects, /// Origin aggregated through weighted votes of those with rank 5 or above; `Success` is 5. + /// Aka the "voice" of members at least V Dan. Fellowship5Dan, /// Origin aggregated through weighted votes of those with rank 6 or above; `Success` is 6. + /// Aka the "voice" of members at least VI Dan. Fellowship6Dan, /// Origin aggregated through weighted votes of those with rank 7 or above; `Success` is 7. + /// Aka the "voice" of all Masters. Masters, /// Origin aggregated through weighted votes of those with rank 8 or above; `Success` is 8. + /// Aka the "voice" of members at least VIII Dan. Fellowship8Dan, /// Origin aggregated through weighted votes of those with rank 9 or above; `Success` is 9. + /// Aka the "voice" of members at least IX Dan. Fellowship9Dan, /// Origin aggregated through weighted votes of those with rank 3 or above when voting on @@ -92,6 +101,35 @@ pub mod pallet_origins { PromoteTo6Dan, } + impl Origin { + /// Returns the rank that the origin `self` speaks for, or `None` if it doesn't speak for + /// any. + /// + /// `Some` will be returned only for the first 9 elements of [Origin]. + pub fn as_voice(&self) -> Option { + Some(match &self { + Origin::Members => ranks::DAN_1, + Origin::Fellowship2Dan => ranks::DAN_2, + Origin::Fellows => ranks::DAN_3, + Origin::Architects => ranks::DAN_4, + Origin::Fellowship5Dan => ranks::DAN_5, + Origin::Fellowship6Dan => ranks::DAN_6, + Origin::Masters => ranks::DAN_7, + Origin::Fellowship8Dan => ranks::DAN_8, + Origin::Fellowship9Dan => ranks::DAN_9, + _ => return None, + }) + } + } + + pub struct ToVoice; + impl<'a, O: 'a + TryInto<&'a Origin>> sp_runtime::traits::TryMorph for ToVoice { + type Outcome = pallet_ranked_collective::Rank; + fn try_morph(o: O) -> Result { + o.try_into().ok().and_then(Origin::as_voice).ok_or(()) + } + } + macro_rules! decl_unit_ensures { ( $name:ident: $success_type:ty = $success:expr ) => { pub struct $name; From 9c106b20c00068a49dd48beecefa8f99b53d0ffa Mon Sep 17 00:00:00 2001 From: Gav Date: Mon, 12 Jun 2023 10:03:44 +0100 Subject: [PATCH 2/4] Bump --- Cargo.lock | 386 +++++++++--------- .../src/fellowship/mod.rs | 24 +- 2 files changed, 205 insertions(+), 205 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9028242c026..dbb97982a9b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -865,7 +865,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "hash-db", "log", @@ -4151,7 +4151,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", ] @@ -4174,7 +4174,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-support-procedural", @@ -4199,7 +4199,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "Inflector", "array-bytes 4.2.0", @@ -4246,7 +4246,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -4257,7 +4257,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -4274,7 +4274,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -4303,7 +4303,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-recursion", "futures", @@ -4324,7 +4324,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "bitflags", "environmental", @@ -4359,7 +4359,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "Inflector", "cfg-expr", @@ -4376,7 +4376,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -4388,7 +4388,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "proc-macro2", "quote", @@ -4398,7 +4398,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "cfg-if", "frame-support", @@ -4417,7 +4417,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -4432,7 +4432,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "sp-api", @@ -4441,7 +4441,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "parity-scale-codec", @@ -6561,7 +6561,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "futures", "log", @@ -6580,7 +6580,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "anyhow", "jsonrpsee", @@ -7084,7 +7084,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "frame-benchmarking", @@ -7105,7 +7105,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7123,7 +7123,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7138,7 +7138,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -7154,7 +7154,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -7170,7 +7170,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -7184,7 +7184,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7208,7 +7208,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7228,7 +7228,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7243,7 +7243,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -7262,7 +7262,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "binary-merkle-tree", @@ -7286,7 +7286,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7392,7 +7392,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7436,7 +7436,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7453,7 +7453,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "bitflags", "environmental", @@ -7483,7 +7483,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "bitflags", "parity-scale-codec", @@ -7496,7 +7496,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "proc-macro2", "quote", @@ -7506,7 +7506,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7523,7 +7523,7 @@ dependencies = [ [[package]] name = "pallet-core-fellowship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7541,7 +7541,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7559,7 +7559,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7582,7 +7582,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7595,7 +7595,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7613,7 +7613,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "docify", "frame-benchmarking", @@ -7632,7 +7632,7 @@ dependencies = [ [[package]] name = "pallet-glutton" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "blake2", "frame-benchmarking", @@ -7650,7 +7650,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7673,7 +7673,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7689,7 +7689,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7709,7 +7709,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7726,7 +7726,7 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -7740,7 +7740,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7757,7 +7757,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7776,7 +7776,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7793,7 +7793,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7809,7 +7809,7 @@ dependencies = [ [[package]] name = "pallet-nft-fractionalization" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7826,7 +7826,7 @@ dependencies = [ [[package]] name = "pallet-nfts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7844,7 +7844,7 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "pallet-nfts", @@ -7855,7 +7855,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7871,7 +7871,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -7888,7 +7888,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7908,7 +7908,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7919,7 +7919,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -7936,7 +7936,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7975,7 +7975,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7992,7 +7992,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8007,7 +8007,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8025,7 +8025,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8040,7 +8040,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8059,7 +8059,7 @@ dependencies = [ [[package]] name = "pallet-salary" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8077,7 +8077,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8094,7 +8094,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -8115,7 +8115,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8131,7 +8131,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -8145,7 +8145,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8168,7 +8168,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8179,7 +8179,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "log", "sp-arithmetic", @@ -8188,7 +8188,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "sp-api", @@ -8197,7 +8197,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8214,7 +8214,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8229,7 +8229,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8247,7 +8247,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8266,7 +8266,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-support", "frame-system", @@ -8282,7 +8282,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8298,7 +8298,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8310,7 +8310,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8327,7 +8327,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8342,7 +8342,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8358,7 +8358,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -8373,7 +8373,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-benchmarking", "frame-support", @@ -11536,7 +11536,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "log", "sp-core", @@ -11547,7 +11547,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "futures", @@ -11576,7 +11576,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "futures", "futures-timer", @@ -11599,7 +11599,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11614,7 +11614,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11633,7 +11633,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11644,7 +11644,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "chrono", @@ -11684,7 +11684,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "fnv", "futures", @@ -11711,7 +11711,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "hash-db", "kvdb", @@ -11737,7 +11737,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "futures", @@ -11762,7 +11762,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "futures", @@ -11791,7 +11791,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "fork-tree", @@ -11827,7 +11827,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "futures", "jsonrpsee", @@ -11849,7 +11849,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -11885,7 +11885,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "futures", "jsonrpsee", @@ -11904,7 +11904,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11917,7 +11917,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "ahash 0.8.2", "array-bytes 4.2.0", @@ -11957,7 +11957,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "finality-grandpa", "futures", @@ -11977,7 +11977,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "futures", @@ -12000,7 +12000,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "lru 0.10.0", "parity-scale-codec", @@ -12022,7 +12022,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -12034,7 +12034,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "anyhow", "cfg-if", @@ -12052,7 +12052,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "ansi_term", "futures", @@ -12068,7 +12068,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "parking_lot 0.12.1", @@ -12082,7 +12082,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -12128,7 +12128,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-channel", "cid", @@ -12149,7 +12149,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -12176,7 +12176,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "ahash 0.8.2", "futures", @@ -12194,7 +12194,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -12216,7 +12216,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -12250,7 +12250,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "futures", @@ -12268,7 +12268,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "bytes", @@ -12298,7 +12298,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12307,7 +12307,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "futures", "jsonrpsee", @@ -12338,7 +12338,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12357,7 +12357,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "http", "jsonrpsee", @@ -12372,7 +12372,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "futures", @@ -12398,7 +12398,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "directories", @@ -12464,7 +12464,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "log", "parity-scale-codec", @@ -12475,7 +12475,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "clap", "fs4", @@ -12491,7 +12491,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12510,7 +12510,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "futures", "libc", @@ -12529,7 +12529,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "chrono", "futures", @@ -12548,7 +12548,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "ansi_term", "atty", @@ -12579,7 +12579,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12590,7 +12590,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "futures", @@ -12616,7 +12616,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "futures", @@ -12632,7 +12632,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-channel", "futures", @@ -13190,7 +13190,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "hash-db", "log", @@ -13210,7 +13210,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "Inflector", "blake2", @@ -13224,7 +13224,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "scale-info", @@ -13237,7 +13237,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "integer-sqrt", "num-traits", @@ -13251,7 +13251,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "scale-info", @@ -13264,7 +13264,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "sp-api", @@ -13276,7 +13276,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "futures", "log", @@ -13294,7 +13294,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "futures", @@ -13309,7 +13309,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "parity-scale-codec", @@ -13327,7 +13327,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "parity-scale-codec", @@ -13348,7 +13348,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13367,7 +13367,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "finality-grandpa", "log", @@ -13385,7 +13385,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "scale-info", @@ -13397,7 +13397,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "bitflags", @@ -13441,7 +13441,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "blake2b_simd", "byteorder", @@ -13455,7 +13455,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "proc-macro2", "quote", @@ -13466,7 +13466,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13475,7 +13475,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "proc-macro2", "quote", @@ -13485,7 +13485,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "environmental", "parity-scale-codec", @@ -13496,7 +13496,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13511,7 +13511,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "bytes", "ed25519", @@ -13537,7 +13537,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "lazy_static", "sp-core", @@ -13548,7 +13548,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "futures", "parity-scale-codec", @@ -13562,7 +13562,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "thiserror", "zstd 0.12.3+zstd.1.5.2", @@ -13571,7 +13571,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13582,7 +13582,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13600,7 +13600,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "scale-info", @@ -13614,7 +13614,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "sp-api", "sp-core", @@ -13624,7 +13624,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "backtrace", "lazy_static", @@ -13634,7 +13634,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "rustc-hash", "serde", @@ -13644,7 +13644,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "either", "hash256-std-hasher", @@ -13666,7 +13666,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13684,7 +13684,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "Inflector", "proc-macro-crate", @@ -13696,7 +13696,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "scale-info", @@ -13710,7 +13710,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "scale-info", @@ -13723,7 +13723,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "hash-db", "log", @@ -13743,7 +13743,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "log", "parity-scale-codec", @@ -13761,12 +13761,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13779,7 +13779,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "futures-timer", @@ -13794,7 +13794,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "sp-std", @@ -13806,7 +13806,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "sp-api", "sp-runtime", @@ -13815,7 +13815,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "log", @@ -13831,7 +13831,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "ahash 0.8.2", "hash-db", @@ -13854,7 +13854,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13871,7 +13871,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13882,7 +13882,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13895,7 +13895,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "parity-scale-codec", "scale-info", @@ -14093,7 +14093,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "platforms", ] @@ -14101,7 +14101,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14120,7 +14120,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "hyper", "log", @@ -14132,7 +14132,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "jsonrpsee", @@ -14145,7 +14145,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "jsonrpsee", "log", @@ -14164,7 +14164,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -14190,7 +14190,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "futures", "substrate-test-utils-derive", @@ -14200,7 +14200,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -14211,7 +14211,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "ansi_term", "build-helper", @@ -14872,7 +14872,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bc4055bb9fdd02ff4a97d33c6aaae3c635225b22" +source = "git+https://github.com/paritytech/substrate?branch=master#b72c475803947121b3b475eb33ba5fc48f1fe5b6" dependencies = [ "async-trait", "clap", diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs index 7a7adb4be41..82326ce9dcc 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs @@ -19,28 +19,28 @@ pub(crate) mod migration; mod origins; mod tracks; -use cumulus_primitives_core::Junction::GeneralIndex; -use frame_system::EnsureNever; -pub use origins::{ - pallet_origins as pallet_fellowship_origins, Architects, EnsureCanPromoteTo, EnsureCanRetainAt, - EnsureFellowship, Fellows, Masters, Members, ToVoice, -}; -use pallet_ranked_collective::EnsureOfRank; -use xcm_builder::{AliasesIntoAccountId32, LocatableAssetId, PayOverXcm}; use crate::{ constants, impls::ToParentTreasury, weights, AccountId, Balance, Balances, FellowshipReferenda, GovernanceLocation, PolkadotTreasuryAccount, Preimage, Runtime, RuntimeCall, RuntimeEvent, - Scheduler, DAYS, RuntimeOrigin, + RuntimeOrigin, Scheduler, DAYS, }; +use cumulus_primitives_core::Junction::GeneralIndex; use frame_support::{ parameter_types, traits::{EitherOf, EitherOfDiverse, MapSuccess, OriginTrait, TryWithMorphedArg}, }; +use frame_system::EnsureNever; +pub use origins::{ + pallet_origins as pallet_fellowship_origins, Architects, EnsureCanPromoteTo, EnsureCanRetainAt, + EnsureFellowship, Fellows, Masters, Members, ToVoice, +}; +use pallet_ranked_collective::EnsureOfRank; use pallet_xcm::{EnsureXcm, IsVoiceOfBody}; use polkadot_runtime_constants::{time::HOURS, xcm::body::FELLOWSHIP_ADMIN_INDEX}; use sp_core::{ConstU128, ConstU32}; use sp_runtime::traits::{AccountIdConversion, ConstU16, ConvertToValue, Replace, TakeFirst}; use xcm::latest::BodyId; +use xcm_builder::{AliasesIntoAccountId32, LocatableAssetId, PayOverXcm}; /// The Fellowship members' ranks. pub mod ranks { @@ -82,9 +82,9 @@ impl pallet_referenda::Config for Runtime { ::PalletsOrigin, ToVoice, EnsureOfRank, - (AccountId, u16) + (AccountId, u16), >, - TakeFirst + TakeFirst, >, >; type CancelOrigin = Architects; @@ -229,4 +229,4 @@ impl pallet_salary::Config for Runtime { } #[test] -fn it_builds() {} \ No newline at end of file +fn it_builds() {} From ff4a536cfc46c25cbb24859c901d4f61252e33e6 Mon Sep 17 00:00:00 2001 From: Gav Date: Sun, 18 Jun 2023 17:48:17 +0100 Subject: [PATCH 3/4] Remove it_builds --- .../collectives/collectives-polkadot/src/fellowship/mod.rs | 3 --- .../collectives/collectives-polkadot/src/fellowship/origins.rs | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs index 82326ce9dcc..318f811111e 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/mod.rs @@ -227,6 +227,3 @@ impl pallet_salary::Config for Runtime { // Total monthly salary budget. type Budget = ConstU128<{ 100_000 * USDT_UNITS }>; } - -#[test] -fn it_builds() {} diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs index 89c1b54201b..812b6f9be35 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs @@ -122,6 +122,9 @@ pub mod pallet_origins { } } + /// A [TryMorph] implementation which is designed to convert an aggregate `RuntimeOrigin` + /// value into the Fellowship voice it represents if it is a Fellowship pallet origin an + /// appropriate variant. See also [Origin::as_voice]. pub struct ToVoice; impl<'a, O: 'a + TryInto<&'a Origin>> sp_runtime::traits::TryMorph for ToVoice { type Outcome = pallet_ranked_collective::Rank; From 7a0e23fc6f812d79c61d3c5eef93a166ca15f7bf Mon Sep 17 00:00:00 2001 From: Gav Date: Sun, 18 Jun 2023 18:11:18 +0100 Subject: [PATCH 4/4] Docs --- .../collectives/collectives-polkadot/src/fellowship/origins.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs index 812b6f9be35..04663aeecf3 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/fellowship/origins.rs @@ -122,7 +122,7 @@ pub mod pallet_origins { } } - /// A [TryMorph] implementation which is designed to convert an aggregate `RuntimeOrigin` + /// A `TryMorph` implementation which is designed to convert an aggregate `RuntimeOrigin` /// value into the Fellowship voice it represents if it is a Fellowship pallet origin an /// appropriate variant. See also [Origin::as_voice]. pub struct ToVoice;