From b36dd8320421d4076801b4f260d6706f49510a92 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Wed, 15 Sep 2021 19:21:18 +0200 Subject: [PATCH 1/6] companion for https://github.com/paritytech/substrate/pull/9788 --- cli/src/command.rs | 68 ++++++++++++++++++----------------- runtime/kusama/src/lib.rs | 17 +++++---- runtime/polkadot/src/lib.rs | 72 +++++++++++++++++++------------------ runtime/westend/src/lib.rs | 9 +++-- 4 files changed, 90 insertions(+), 76 deletions(-) diff --git a/cli/src/command.rs b/cli/src/command.rs index c9ba571e828c..a31cdb2343e5 100644 --- a/cli/src/command.rs +++ b/cli/src/command.rs @@ -99,8 +99,9 @@ impl SubstrateCli for Cli { #[cfg(feature = "kusama-native")] "kusama-staging" => Box::new(service::chain_spec::kusama_staging_testnet_config()?), #[cfg(not(feature = "kusama-native"))] - name if name.starts_with("kusama-") && !name.ends_with(".json") => - Err(format!("`{}` only supported with `kusama-native` feature enabled.", name))?, + name if name.starts_with("kusama-") && !name.ends_with(".json") => { + Err(format!("`{}` only supported with `kusama-native` feature enabled.", name))? + } "polkadot" => Box::new(service::chain_spec::polkadot_config()?), #[cfg(feature = "polkadot-native")] "polkadot-dev" | "dev" => Box::new(service::chain_spec::polkadot_development_config()?), @@ -116,8 +117,9 @@ impl SubstrateCli for Cli { #[cfg(feature = "rococo-native")] "rococo-staging" => Box::new(service::chain_spec::rococo_staging_testnet_config()?), #[cfg(not(feature = "rococo-native"))] - name if name.starts_with("rococo-") && !name.ends_with(".json") => - Err(format!("`{}` only supported with `rococo-native` feature enabled.", name))?, + name if name.starts_with("rococo-") && !name.ends_with(".json") => { + Err(format!("`{}` only supported with `rococo-native` feature enabled.", name))? + } "westend" => Box::new(service::chain_spec::westend_config()?), #[cfg(feature = "westend-native")] "westend-dev" => Box::new(service::chain_spec::westend_development_config()?), @@ -126,16 +128,18 @@ impl SubstrateCli for Cli { #[cfg(feature = "westend-native")] "westend-staging" => Box::new(service::chain_spec::westend_staging_testnet_config()?), #[cfg(not(feature = "westend-native"))] - name if name.starts_with("westend-") && !name.ends_with(".json") => - Err(format!("`{}` only supported with `westend-native` feature enabled.", name))?, + name if name.starts_with("westend-") && !name.ends_with(".json") => { + Err(format!("`{}` only supported with `westend-native` feature enabled.", name))? + } "wococo" => Box::new(service::chain_spec::wococo_config()?), #[cfg(feature = "rococo-native")] "wococo-dev" => Box::new(service::chain_spec::wococo_development_config()?), #[cfg(feature = "rococo-native")] "wococo-local" => Box::new(service::chain_spec::wococo_local_testnet_config()?), #[cfg(not(feature = "rococo-native"))] - name if name.starts_with("wococo-") => - Err(format!("`{}` only supported with `rococo-native` feature enabled.", name))?, + name if name.starts_with("wococo-") => { + Err(format!("`{}` only supported with `rococo-native` feature enabled.", name))? + } path => { let path = std::path::PathBuf::from(path); @@ -153,24 +157,24 @@ impl SubstrateCli for Cli { } else { chain_spec } - }, + } }) } fn native_runtime_version(spec: &Box) -> &'static RuntimeVersion { #[cfg(feature = "kusama-native")] if spec.is_kusama() { - return &service::kusama_runtime::VERSION + return &service::kusama_runtime::VERSION; } #[cfg(feature = "westend-native")] if spec.is_westend() { - return &service::westend_runtime::VERSION + return &service::westend_runtime::VERSION; } #[cfg(feature = "rococo-native")] if spec.is_rococo() || spec.is_wococo() { - return &service::rococo_runtime::VERSION + return &service::rococo_runtime::VERSION; } #[cfg(not(all( @@ -182,7 +186,7 @@ impl SubstrateCli for Cli { #[cfg(feature = "polkadot-native")] { - return &service::polkadot_runtime::VERSION + return &service::polkadot_runtime::VERSION; } #[cfg(not(feature = "polkadot-native"))] @@ -274,7 +278,7 @@ pub fn run() -> Result<()> { Some(Subcommand::BuildSpec(cmd)) => { let runner = cli.create_runner(cmd)?; Ok(runner.sync_run(|config| cmd.run(config.chain_spec, config.network))?) - }, + } Some(Subcommand::CheckBlock(cmd)) => { let runner = cli.create_runner(cmd).map_err(Error::SubstrateCli)?; let chain_spec = &runner.config().chain_spec; @@ -286,7 +290,7 @@ pub fn run() -> Result<()> { service::new_chain_ops(&mut config, None)?; Ok((cmd.run(client, import_queue).map_err(Error::SubstrateCli), task_manager)) }) - }, + } Some(Subcommand::ExportBlocks(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -298,7 +302,7 @@ pub fn run() -> Result<()> { service::new_chain_ops(&mut config, None).map_err(Error::PolkadotService)?; Ok((cmd.run(client, config.database).map_err(Error::SubstrateCli), task_manager)) })?) - }, + } Some(Subcommand::ExportState(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -309,7 +313,7 @@ pub fn run() -> Result<()> { let (client, _, _, task_manager) = service::new_chain_ops(&mut config, None)?; Ok((cmd.run(client, config.chain_spec).map_err(Error::SubstrateCli), task_manager)) })?) - }, + } Some(Subcommand::ImportBlocks(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -321,11 +325,11 @@ pub fn run() -> Result<()> { service::new_chain_ops(&mut config, None)?; Ok((cmd.run(client, import_queue).map_err(Error::SubstrateCli), task_manager)) })?) - }, + } Some(Subcommand::PurgeChain(cmd)) => { let runner = cli.create_runner(cmd)?; Ok(runner.sync_run(|config| cmd.run(config.database))?) - }, + } Some(Subcommand::Revert(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -336,7 +340,7 @@ pub fn run() -> Result<()> { let (client, backend, _, task_manager) = service::new_chain_ops(&mut config, None)?; Ok((cmd.run(client, backend).map_err(Error::SubstrateCli), task_manager)) })?) - }, + } Some(Subcommand::PvfPrepareWorker(cmd)) => { let mut builder = sc_cli::LoggerBuilder::new(""); builder.with_colors(false); @@ -347,7 +351,7 @@ pub fn run() -> Result<()> { return Err(sc_cli::Error::Input( "PVF preparation workers are not supported under this platform".into(), ) - .into()) + .into()); } #[cfg(not(target_os = "android"))] @@ -355,7 +359,7 @@ pub fn run() -> Result<()> { polkadot_node_core_pvf::prepare_worker_entrypoint(&cmd.socket_path); Ok(()) } - }, + } Some(Subcommand::PvfExecuteWorker(cmd)) => { let mut builder = sc_cli::LoggerBuilder::new(""); builder.with_colors(false); @@ -366,7 +370,7 @@ pub fn run() -> Result<()> { return Err(sc_cli::Error::Input( "PVF execution workers are not supported under this platform".into(), ) - .into()) + .into()); } #[cfg(not(target_os = "android"))] @@ -374,7 +378,7 @@ pub fn run() -> Result<()> { polkadot_node_core_pvf::execute_worker_entrypoint(&cmd.socket_path); Ok(()) } - }, + } Some(Subcommand::Benchmark(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -389,7 +393,7 @@ pub fn run() -> Result<()> { config, ) .map_err(|e| Error::SubstrateCli(e)) - })?) + })?); } #[cfg(feature = "westend-native")] @@ -399,7 +403,7 @@ pub fn run() -> Result<()> { config, ) .map_err(|e| Error::SubstrateCli(e)) - })?) + })?); } // else we assume it is polkadot. @@ -410,11 +414,11 @@ pub fn run() -> Result<()> { config, ) .map_err(|e| Error::SubstrateCli(e)) - })?) + })?); } #[cfg(not(feature = "polkadot-native"))] panic!("No runtime feature (polkadot, kusama, westend, rococo) is enabled") - }, + } Some(Subcommand::Key(cmd)) => Ok(cmd.run(&cli)?), #[cfg(feature = "try-runtime")] Some(Subcommand::TryRuntime(cmd)) => { @@ -439,7 +443,7 @@ pub fn run() -> Result<()> { .map_err(Error::SubstrateCli), task_manager, )) - }) + }); } #[cfg(feature = "westend-native")] @@ -452,7 +456,7 @@ pub fn run() -> Result<()> { .map_err(Error::SubstrateCli), task_manager, )) - }) + }); } // else we assume it is polkadot. #[cfg(feature = "polkadot-native")] @@ -465,11 +469,11 @@ pub fn run() -> Result<()> { .map_err(Error::SubstrateCli), task_manager, )) - }) + }); } #[cfg(not(feature = "polkadot-native"))] panic!("No runtime feature (polkadot, kusama, westend, rococo) is enabled") - }, + } #[cfg(not(feature = "try-runtime"))] Some(Subcommand::TryRuntime) => Err(Error::Other( "TryRuntime wasn't enabled when building the node. \ diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index d45f4e148c52..285fc12464db 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1043,22 +1043,22 @@ impl InstanceFilter for ProxyType { ), ProxyType::Governance => matches!( c, - Call::Democracy(..) | - Call::Council(..) | Call::TechnicalCommittee(..) | - Call::PhragmenElection(..) | - Call::Treasury(..) | Call::Bounties(..) | - Call::Tips(..) | Call::Utility(..) + Call::Democracy(..) + | Call::Council(..) | Call::TechnicalCommittee(..) + | Call::PhragmenElection(..) + | Call::Treasury(..) | Call::Bounties(..) + | Call::Tips(..) | Call::Utility(..) ), ProxyType::Staking => { matches!(c, Call::Staking(..) | Call::Session(..) | Call::Utility(..)) - }, + } ProxyType::IdentityJudgement => matches!( c, Call::Identity(pallet_identity::Call::provide_judgement(..)) | Call::Utility(..) ), ProxyType::CancelProxy => { matches!(c, Call::Proxy(pallet_proxy::Call::reject_announcement(..))) - }, + } ProxyType::Auction => matches!( c, Call::Auctions(..) | Call::Crowdloan(..) | Call::Registrar(..) | Call::Slots(..) @@ -1918,6 +1918,9 @@ sp_api::impl_runtime_apis! { let weight = Executive::try_runtime_upgrade()?; Ok((weight, BlockWeights::get().max_block)) } + fn execute_block_no_state_root_check(block: Block) -> Weight { + Executive::execute_block_no_state_root_check(block) + } } #[cfg(feature = "runtime-benchmarks")] diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 3e0978a4647d..6d50e8ec532f 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -96,7 +96,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("polkadot"), impl_name: create_runtime_str!("parity-polkadot"), authoring_version: 0, - spec_version: 9100, + spec_version: 9090, impl_version: 0, #[cfg(not(feature = "disable-runtime-api"))] apis: RUNTIME_API_VERSIONS, @@ -123,32 +123,32 @@ impl Contains for BaseFilter { fn contains(call: &Call) -> bool { match call { // These modules are all allowed to be called by transactions: - Call::Democracy(_) | - Call::Council(_) | - Call::TechnicalCommittee(_) | - Call::TechnicalMembership(_) | - Call::Treasury(_) | - Call::PhragmenElection(_) | - Call::System(_) | - Call::Scheduler(_) | - Call::Indices(_) | - Call::Babe(_) | - Call::Timestamp(_) | - Call::Balances(_) | - Call::Authorship(_) | - Call::Staking(_) | - Call::Session(_) | - Call::Grandpa(_) | - Call::ImOnline(_) | - Call::Utility(_) | - Call::Claims(_) | - Call::Vesting(_) | - Call::Identity(_) | - Call::Proxy(_) | - Call::Multisig(_) | - Call::Bounties(_) | - Call::Tips(_) | - Call::ElectionProviderMultiPhase(_) => true, + Call::Democracy(_) + | Call::Council(_) + | Call::TechnicalCommittee(_) + | Call::TechnicalMembership(_) + | Call::Treasury(_) + | Call::PhragmenElection(_) + | Call::System(_) + | Call::Scheduler(_) + | Call::Indices(_) + | Call::Babe(_) + | Call::Timestamp(_) + | Call::Balances(_) + | Call::Authorship(_) + | Call::Staking(_) + | Call::Session(_) + | Call::Grandpa(_) + | Call::ImOnline(_) + | Call::Utility(_) + | Call::Claims(_) + | Call::Vesting(_) + | Call::Identity(_) + | Call::Proxy(_) + | Call::Multisig(_) + | Call::Bounties(_) + | Call::Tips(_) + | Call::ElectionProviderMultiPhase(_) => true, } } } @@ -993,22 +993,22 @@ impl InstanceFilter for ProxyType { ), ProxyType::Governance => matches!( c, - Call::Democracy(..) | - Call::Council(..) | Call::TechnicalCommittee(..) | - Call::PhragmenElection(..) | - Call::Treasury(..) | Call::Bounties(..) | - Call::Tips(..) | Call::Utility(..) + Call::Democracy(..) + | Call::Council(..) | Call::TechnicalCommittee(..) + | Call::PhragmenElection(..) + | Call::Treasury(..) | Call::Bounties(..) + | Call::Tips(..) | Call::Utility(..) ), ProxyType::Staking => { matches!(c, Call::Staking(..) | Call::Session(..) | Call::Utility(..)) - }, + } ProxyType::IdentityJudgement => matches!( c, Call::Identity(pallet_identity::Call::provide_judgement(..)) | Call::Utility(..) ), ProxyType::CancelProxy => { matches!(c, Call::Proxy(pallet_proxy::Call::reject_announcement(..))) - }, + } } } fn is_superset(&self, o: &Self) -> bool { @@ -1535,6 +1535,10 @@ sp_api::impl_runtime_apis! { let weight = Executive::try_runtime_upgrade()?; Ok((weight, BlockWeights::get().max_block)) } + + fn execute_block_no_state_root_check(block: Block) -> Weight { + Executive::execute_block_no_state_root_check(block) + } } #[cfg(feature = "runtime-benchmarks")] diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 24e522ef409c..29f771f27fc6 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -712,11 +712,11 @@ impl InstanceFilter for ProxyType { ), ProxyType::Staking => { matches!(c, Call::Staking(..) | Call::Session(..) | Call::Utility(..)) - }, + } ProxyType::SudoBalances => match c { Call::Sudo(pallet_sudo::Call::sudo(ref x)) => { matches!(x.as_ref(), &Call::Balances(..)) - }, + } Call::Utility(..) => true, _ => false, }, @@ -726,7 +726,7 @@ impl InstanceFilter for ProxyType { ), ProxyType::CancelProxy => { matches!(c, Call::Proxy(pallet_proxy::Call::reject_announcement(..))) - }, + } ProxyType::Auction => matches!( c, Call::Auctions(..) | Call::Crowdloan(..) | Call::Registrar(..) | Call::Slots(..) @@ -1381,6 +1381,9 @@ sp_api::impl_runtime_apis! { let weight = Executive::try_runtime_upgrade()?; Ok((weight, BlockWeights::get().max_block)) } + fn execute_block_no_state_root_check(block: Block) -> Weight { + Executive::execute_block_no_state_root_check(block) + } } #[cfg(feature = "runtime-benchmarks")] From 70b5a655e1decb21e52d988cbe96d47a7e094c9d Mon Sep 17 00:00:00 2001 From: kianenigma Date: Wed, 15 Sep 2021 19:23:17 +0200 Subject: [PATCH 2/6] fmt --- cli/src/command.rs | 68 +++++++++++++++++-------------------- runtime/kusama/src/lib.rs | 14 ++++---- runtime/polkadot/src/lib.rs | 68 ++++++++++++++++++------------------- runtime/westend/src/lib.rs | 6 ++-- 4 files changed, 76 insertions(+), 80 deletions(-) diff --git a/cli/src/command.rs b/cli/src/command.rs index a31cdb2343e5..c9ba571e828c 100644 --- a/cli/src/command.rs +++ b/cli/src/command.rs @@ -99,9 +99,8 @@ impl SubstrateCli for Cli { #[cfg(feature = "kusama-native")] "kusama-staging" => Box::new(service::chain_spec::kusama_staging_testnet_config()?), #[cfg(not(feature = "kusama-native"))] - name if name.starts_with("kusama-") && !name.ends_with(".json") => { - Err(format!("`{}` only supported with `kusama-native` feature enabled.", name))? - } + name if name.starts_with("kusama-") && !name.ends_with(".json") => + Err(format!("`{}` only supported with `kusama-native` feature enabled.", name))?, "polkadot" => Box::new(service::chain_spec::polkadot_config()?), #[cfg(feature = "polkadot-native")] "polkadot-dev" | "dev" => Box::new(service::chain_spec::polkadot_development_config()?), @@ -117,9 +116,8 @@ impl SubstrateCli for Cli { #[cfg(feature = "rococo-native")] "rococo-staging" => Box::new(service::chain_spec::rococo_staging_testnet_config()?), #[cfg(not(feature = "rococo-native"))] - name if name.starts_with("rococo-") && !name.ends_with(".json") => { - Err(format!("`{}` only supported with `rococo-native` feature enabled.", name))? - } + name if name.starts_with("rococo-") && !name.ends_with(".json") => + Err(format!("`{}` only supported with `rococo-native` feature enabled.", name))?, "westend" => Box::new(service::chain_spec::westend_config()?), #[cfg(feature = "westend-native")] "westend-dev" => Box::new(service::chain_spec::westend_development_config()?), @@ -128,18 +126,16 @@ impl SubstrateCli for Cli { #[cfg(feature = "westend-native")] "westend-staging" => Box::new(service::chain_spec::westend_staging_testnet_config()?), #[cfg(not(feature = "westend-native"))] - name if name.starts_with("westend-") && !name.ends_with(".json") => { - Err(format!("`{}` only supported with `westend-native` feature enabled.", name))? - } + name if name.starts_with("westend-") && !name.ends_with(".json") => + Err(format!("`{}` only supported with `westend-native` feature enabled.", name))?, "wococo" => Box::new(service::chain_spec::wococo_config()?), #[cfg(feature = "rococo-native")] "wococo-dev" => Box::new(service::chain_spec::wococo_development_config()?), #[cfg(feature = "rococo-native")] "wococo-local" => Box::new(service::chain_spec::wococo_local_testnet_config()?), #[cfg(not(feature = "rococo-native"))] - name if name.starts_with("wococo-") => { - Err(format!("`{}` only supported with `rococo-native` feature enabled.", name))? - } + name if name.starts_with("wococo-") => + Err(format!("`{}` only supported with `rococo-native` feature enabled.", name))?, path => { let path = std::path::PathBuf::from(path); @@ -157,24 +153,24 @@ impl SubstrateCli for Cli { } else { chain_spec } - } + }, }) } fn native_runtime_version(spec: &Box) -> &'static RuntimeVersion { #[cfg(feature = "kusama-native")] if spec.is_kusama() { - return &service::kusama_runtime::VERSION; + return &service::kusama_runtime::VERSION } #[cfg(feature = "westend-native")] if spec.is_westend() { - return &service::westend_runtime::VERSION; + return &service::westend_runtime::VERSION } #[cfg(feature = "rococo-native")] if spec.is_rococo() || spec.is_wococo() { - return &service::rococo_runtime::VERSION; + return &service::rococo_runtime::VERSION } #[cfg(not(all( @@ -186,7 +182,7 @@ impl SubstrateCli for Cli { #[cfg(feature = "polkadot-native")] { - return &service::polkadot_runtime::VERSION; + return &service::polkadot_runtime::VERSION } #[cfg(not(feature = "polkadot-native"))] @@ -278,7 +274,7 @@ pub fn run() -> Result<()> { Some(Subcommand::BuildSpec(cmd)) => { let runner = cli.create_runner(cmd)?; Ok(runner.sync_run(|config| cmd.run(config.chain_spec, config.network))?) - } + }, Some(Subcommand::CheckBlock(cmd)) => { let runner = cli.create_runner(cmd).map_err(Error::SubstrateCli)?; let chain_spec = &runner.config().chain_spec; @@ -290,7 +286,7 @@ pub fn run() -> Result<()> { service::new_chain_ops(&mut config, None)?; Ok((cmd.run(client, import_queue).map_err(Error::SubstrateCli), task_manager)) }) - } + }, Some(Subcommand::ExportBlocks(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -302,7 +298,7 @@ pub fn run() -> Result<()> { service::new_chain_ops(&mut config, None).map_err(Error::PolkadotService)?; Ok((cmd.run(client, config.database).map_err(Error::SubstrateCli), task_manager)) })?) - } + }, Some(Subcommand::ExportState(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -313,7 +309,7 @@ pub fn run() -> Result<()> { let (client, _, _, task_manager) = service::new_chain_ops(&mut config, None)?; Ok((cmd.run(client, config.chain_spec).map_err(Error::SubstrateCli), task_manager)) })?) - } + }, Some(Subcommand::ImportBlocks(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -325,11 +321,11 @@ pub fn run() -> Result<()> { service::new_chain_ops(&mut config, None)?; Ok((cmd.run(client, import_queue).map_err(Error::SubstrateCli), task_manager)) })?) - } + }, Some(Subcommand::PurgeChain(cmd)) => { let runner = cli.create_runner(cmd)?; Ok(runner.sync_run(|config| cmd.run(config.database))?) - } + }, Some(Subcommand::Revert(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -340,7 +336,7 @@ pub fn run() -> Result<()> { let (client, backend, _, task_manager) = service::new_chain_ops(&mut config, None)?; Ok((cmd.run(client, backend).map_err(Error::SubstrateCli), task_manager)) })?) - } + }, Some(Subcommand::PvfPrepareWorker(cmd)) => { let mut builder = sc_cli::LoggerBuilder::new(""); builder.with_colors(false); @@ -351,7 +347,7 @@ pub fn run() -> Result<()> { return Err(sc_cli::Error::Input( "PVF preparation workers are not supported under this platform".into(), ) - .into()); + .into()) } #[cfg(not(target_os = "android"))] @@ -359,7 +355,7 @@ pub fn run() -> Result<()> { polkadot_node_core_pvf::prepare_worker_entrypoint(&cmd.socket_path); Ok(()) } - } + }, Some(Subcommand::PvfExecuteWorker(cmd)) => { let mut builder = sc_cli::LoggerBuilder::new(""); builder.with_colors(false); @@ -370,7 +366,7 @@ pub fn run() -> Result<()> { return Err(sc_cli::Error::Input( "PVF execution workers are not supported under this platform".into(), ) - .into()); + .into()) } #[cfg(not(target_os = "android"))] @@ -378,7 +374,7 @@ pub fn run() -> Result<()> { polkadot_node_core_pvf::execute_worker_entrypoint(&cmd.socket_path); Ok(()) } - } + }, Some(Subcommand::Benchmark(cmd)) => { let runner = cli.create_runner(cmd)?; let chain_spec = &runner.config().chain_spec; @@ -393,7 +389,7 @@ pub fn run() -> Result<()> { config, ) .map_err(|e| Error::SubstrateCli(e)) - })?); + })?) } #[cfg(feature = "westend-native")] @@ -403,7 +399,7 @@ pub fn run() -> Result<()> { config, ) .map_err(|e| Error::SubstrateCli(e)) - })?); + })?) } // else we assume it is polkadot. @@ -414,11 +410,11 @@ pub fn run() -> Result<()> { config, ) .map_err(|e| Error::SubstrateCli(e)) - })?); + })?) } #[cfg(not(feature = "polkadot-native"))] panic!("No runtime feature (polkadot, kusama, westend, rococo) is enabled") - } + }, Some(Subcommand::Key(cmd)) => Ok(cmd.run(&cli)?), #[cfg(feature = "try-runtime")] Some(Subcommand::TryRuntime(cmd)) => { @@ -443,7 +439,7 @@ pub fn run() -> Result<()> { .map_err(Error::SubstrateCli), task_manager, )) - }); + }) } #[cfg(feature = "westend-native")] @@ -456,7 +452,7 @@ pub fn run() -> Result<()> { .map_err(Error::SubstrateCli), task_manager, )) - }); + }) } // else we assume it is polkadot. #[cfg(feature = "polkadot-native")] @@ -469,11 +465,11 @@ pub fn run() -> Result<()> { .map_err(Error::SubstrateCli), task_manager, )) - }); + }) } #[cfg(not(feature = "polkadot-native"))] panic!("No runtime feature (polkadot, kusama, westend, rococo) is enabled") - } + }, #[cfg(not(feature = "try-runtime"))] Some(Subcommand::TryRuntime) => Err(Error::Other( "TryRuntime wasn't enabled when building the node. \ diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 285fc12464db..bb888c712b6a 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1043,22 +1043,22 @@ impl InstanceFilter for ProxyType { ), ProxyType::Governance => matches!( c, - Call::Democracy(..) - | Call::Council(..) | Call::TechnicalCommittee(..) - | Call::PhragmenElection(..) - | Call::Treasury(..) | Call::Bounties(..) - | Call::Tips(..) | Call::Utility(..) + Call::Democracy(..) | + Call::Council(..) | Call::TechnicalCommittee(..) | + Call::PhragmenElection(..) | + Call::Treasury(..) | Call::Bounties(..) | + Call::Tips(..) | Call::Utility(..) ), ProxyType::Staking => { matches!(c, Call::Staking(..) | Call::Session(..) | Call::Utility(..)) - } + }, ProxyType::IdentityJudgement => matches!( c, Call::Identity(pallet_identity::Call::provide_judgement(..)) | Call::Utility(..) ), ProxyType::CancelProxy => { matches!(c, Call::Proxy(pallet_proxy::Call::reject_announcement(..))) - } + }, ProxyType::Auction => matches!( c, Call::Auctions(..) | Call::Crowdloan(..) | Call::Registrar(..) | Call::Slots(..) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 6d50e8ec532f..7e1b578fa37c 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -96,7 +96,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("polkadot"), impl_name: create_runtime_str!("parity-polkadot"), authoring_version: 0, - spec_version: 9090, + spec_version: 9100, impl_version: 0, #[cfg(not(feature = "disable-runtime-api"))] apis: RUNTIME_API_VERSIONS, @@ -123,32 +123,32 @@ impl Contains for BaseFilter { fn contains(call: &Call) -> bool { match call { // These modules are all allowed to be called by transactions: - Call::Democracy(_) - | Call::Council(_) - | Call::TechnicalCommittee(_) - | Call::TechnicalMembership(_) - | Call::Treasury(_) - | Call::PhragmenElection(_) - | Call::System(_) - | Call::Scheduler(_) - | Call::Indices(_) - | Call::Babe(_) - | Call::Timestamp(_) - | Call::Balances(_) - | Call::Authorship(_) - | Call::Staking(_) - | Call::Session(_) - | Call::Grandpa(_) - | Call::ImOnline(_) - | Call::Utility(_) - | Call::Claims(_) - | Call::Vesting(_) - | Call::Identity(_) - | Call::Proxy(_) - | Call::Multisig(_) - | Call::Bounties(_) - | Call::Tips(_) - | Call::ElectionProviderMultiPhase(_) => true, + Call::Democracy(_) | + Call::Council(_) | + Call::TechnicalCommittee(_) | + Call::TechnicalMembership(_) | + Call::Treasury(_) | + Call::PhragmenElection(_) | + Call::System(_) | + Call::Scheduler(_) | + Call::Indices(_) | + Call::Babe(_) | + Call::Timestamp(_) | + Call::Balances(_) | + Call::Authorship(_) | + Call::Staking(_) | + Call::Session(_) | + Call::Grandpa(_) | + Call::ImOnline(_) | + Call::Utility(_) | + Call::Claims(_) | + Call::Vesting(_) | + Call::Identity(_) | + Call::Proxy(_) | + Call::Multisig(_) | + Call::Bounties(_) | + Call::Tips(_) | + Call::ElectionProviderMultiPhase(_) => true, } } } @@ -993,22 +993,22 @@ impl InstanceFilter for ProxyType { ), ProxyType::Governance => matches!( c, - Call::Democracy(..) - | Call::Council(..) | Call::TechnicalCommittee(..) - | Call::PhragmenElection(..) - | Call::Treasury(..) | Call::Bounties(..) - | Call::Tips(..) | Call::Utility(..) + Call::Democracy(..) | + Call::Council(..) | Call::TechnicalCommittee(..) | + Call::PhragmenElection(..) | + Call::Treasury(..) | Call::Bounties(..) | + Call::Tips(..) | Call::Utility(..) ), ProxyType::Staking => { matches!(c, Call::Staking(..) | Call::Session(..) | Call::Utility(..)) - } + }, ProxyType::IdentityJudgement => matches!( c, Call::Identity(pallet_identity::Call::provide_judgement(..)) | Call::Utility(..) ), ProxyType::CancelProxy => { matches!(c, Call::Proxy(pallet_proxy::Call::reject_announcement(..))) - } + }, } } fn is_superset(&self, o: &Self) -> bool { diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 29f771f27fc6..2f7acfc5c341 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -712,11 +712,11 @@ impl InstanceFilter for ProxyType { ), ProxyType::Staking => { matches!(c, Call::Staking(..) | Call::Session(..) | Call::Utility(..)) - } + }, ProxyType::SudoBalances => match c { Call::Sudo(pallet_sudo::Call::sudo(ref x)) => { matches!(x.as_ref(), &Call::Balances(..)) - } + }, Call::Utility(..) => true, _ => false, }, @@ -726,7 +726,7 @@ impl InstanceFilter for ProxyType { ), ProxyType::CancelProxy => { matches!(c, Call::Proxy(pallet_proxy::Call::reject_announcement(..))) - } + }, ProxyType::Auction => matches!( c, Call::Auctions(..) | Call::Crowdloan(..) | Call::Registrar(..) | Call::Slots(..) From d23387e594de480918ed43be81133450813dfd94 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 16 Sep 2021 15:56:50 +0200 Subject: [PATCH 3/6] Some fixes --- runtime/kusama/src/lib.rs | 6 +++--- runtime/polkadot/src/lib.rs | 6 +++--- runtime/westend/src/lib.rs | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index bb888c712b6a..cc0b9a022eb4 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1913,10 +1913,10 @@ sp_api::impl_runtime_apis! { #[cfg(feature = "try-runtime")] impl frame_try_runtime::TryRuntime for Runtime { - fn on_runtime_upgrade() -> Result<(Weight, Weight), sp_runtime::RuntimeString> { + fn on_runtime_upgrade() -> (Weight, Weight) { log::info!("try-runtime::on_runtime_upgrade kusama."); - let weight = Executive::try_runtime_upgrade()?; - Ok((weight, BlockWeights::get().max_block)) + let weight = Executive::try_runtime_upgrade().unwrap(); + (weight, BlockWeights::get().max_block) } fn execute_block_no_state_root_check(block: Block) -> Weight { Executive::execute_block_no_state_root_check(block) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 7e1b578fa37c..09cb6ed649b8 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1530,10 +1530,10 @@ sp_api::impl_runtime_apis! { #[cfg(feature = "try-runtime")] impl frame_try_runtime::TryRuntime for Runtime { - fn on_runtime_upgrade() -> Result<(Weight, Weight), sp_runtime::RuntimeString> { + fn on_runtime_upgrade() -> (Weight, Weight) { log::info!("try-runtime::on_runtime_upgrade polkadot."); - let weight = Executive::try_runtime_upgrade()?; - Ok((weight, BlockWeights::get().max_block)) + let weight = Executive::try_runtime_upgrade().unwrap(); + (weight, BlockWeights::get().max_block) } fn execute_block_no_state_root_check(block: Block) -> Weight { diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 2f7acfc5c341..b00358bae14e 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1376,10 +1376,10 @@ sp_api::impl_runtime_apis! { #[cfg(feature = "try-runtime")] impl frame_try_runtime::TryRuntime for Runtime { - fn on_runtime_upgrade() -> Result<(Weight, Weight), sp_runtime::RuntimeString> { + fn on_runtime_upgrade() -> (Weight, Weight) { log::info!("try-runtime::on_runtime_upgrade westend."); - let weight = Executive::try_runtime_upgrade()?; - Ok((weight, BlockWeights::get().max_block)) + let weight = Executive::try_runtime_upgrade().unwrap(); + (weight, BlockWeights::get().max_block) } fn execute_block_no_state_root_check(block: Block) -> Weight { Executive::execute_block_no_state_root_check(block) From 7b53452105a94c13068b0277ae4a0308fc307bda Mon Sep 17 00:00:00 2001 From: kianenigma Date: Fri, 17 Sep 2021 14:03:07 +0200 Subject: [PATCH 4/6] final fixes --- runtime/kusama/src/lib.rs | 4 ++-- runtime/polkadot/src/lib.rs | 4 ++-- runtime/westend/src/lib.rs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index f0b9406478b5..fc709c96b62b 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1975,8 +1975,8 @@ sp_api::impl_runtime_apis! { let weight = Executive::try_runtime_upgrade().unwrap(); (weight, BlockWeights::get().max_block) } - fn execute_block_no_state_root_check(block: Block) -> Weight { - Executive::execute_block_no_state_root_check(block) + fn execute_block_no_check(block: Block) -> Weight { + Executive::execute_block_no_check(block) } } diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 3329d517b187..72ff1df8dfda 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1554,8 +1554,8 @@ sp_api::impl_runtime_apis! { (weight, BlockWeights::get().max_block) } - fn execute_block_no_state_root_check(block: Block) -> Weight { - Executive::execute_block_no_state_root_check(block) + fn execute_block_no_check(block: Block) -> Weight { + Executive::execute_block_no_check(block) } } diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 39afa643d1c7..46d865b5866c 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1438,8 +1438,8 @@ sp_api::impl_runtime_apis! { let weight = Executive::try_runtime_upgrade().unwrap(); (weight, BlockWeights::get().max_block) } - fn execute_block_no_state_root_check(block: Block) -> Weight { - Executive::execute_block_no_state_root_check(block) + fn execute_block_no_check(block: Block) -> Weight { + Executive::execute_block_no_check(block) } } From e504c4b7314224be77be4810481199a901077c66 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Fri, 17 Sep 2021 14:19:38 +0200 Subject: [PATCH 5/6] fix a few small things --- runtime/parachains/src/hrmp.rs | 5 +++-- utils/remote-ext-tests/bags-list/src/voter_bags.rs | 2 +- utils/staking-miner/src/main.rs | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/runtime/parachains/src/hrmp.rs b/runtime/parachains/src/hrmp.rs index f087dfd3a405..373bb3d662dc 100644 --- a/runtime/parachains/src/hrmp.rs +++ b/runtime/parachains/src/hrmp.rs @@ -143,8 +143,9 @@ impl fmt::Debug for OutboundHrmpAcceptanceErr { "more HRMP messages than permitted by config ({} > {})", sent, permitted, ), - NotSorted { idx } => - write!(fmt, "the HRMP messages are not sorted (first unsorted is at index {})", idx,), + NotSorted { idx } => { + write!(fmt, "the HRMP messages are not sorted (first unsorted is at index {})", idx,) + }, NoSuchChannel { idx, channel_id } => write!( fmt, "the HRMP message at index {} is sent to a non existent channel {:?}->{:?}", diff --git a/utils/remote-ext-tests/bags-list/src/voter_bags.rs b/utils/remote-ext-tests/bags-list/src/voter_bags.rs index 94f7d605eae3..4b7d7d6ec88d 100644 --- a/utils/remote-ext-tests/bags-list/src/voter_bags.rs +++ b/utils/remote-ext-tests/bags-list/src/voter_bags.rs @@ -41,7 +41,7 @@ pub(crate) async fn test_voter_bags_migration< let mut ext = Builder::::new() .mode(Mode::Online(OnlineConfig { transport: ws_url.to_string().into(), - modules: vec!["Staking".to_string()], + pallets: vec!["Staking".to_string()], at: None, state_snapshot: None, })) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 59c8846db28c..b3f504ff2d07 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -389,15 +389,15 @@ async fn create_election_ext( use frame_support::{storage::generator::StorageMap, traits::PalletInfo}; use sp_core::hashing::twox_128; - let mut modules = vec![::PalletInfo::name::>() + let mut pallets = vec![::PalletInfo::name::>() .expect("Pallet always has name; qed.") .to_string()]; - modules.extend(additional); + pallets.extend(additional); Builder::::new() .mode(Mode::Online(OnlineConfig { transport: uri.into(), at, - modules, + pallets, ..Default::default() })) .inject_hashed_prefix(&>::prefix_hash()) From e7e2f7101ecdcc287cb897394fe549019415bad1 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Tue, 21 Sep 2021 15:04:38 +0000 Subject: [PATCH 6/6] update Substrate --- Cargo.lock | 312 +++++++++++++++++++++++++++-------------------------- 1 file changed, 158 insertions(+), 154 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50aeb299829b..b0e9ea60c000 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1928,7 +1928,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", ] @@ -1946,7 +1946,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -1966,7 +1966,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "Inflector", "chrono", @@ -1992,7 +1992,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -2006,7 +2006,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -2034,7 +2034,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "bitflags", "frame-metadata", @@ -2061,7 +2061,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2073,7 +2073,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.0.0", @@ -2085,7 +2085,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "proc-macro2", "quote", @@ -2095,7 +2095,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2118,7 +2118,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -2129,7 +2129,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "log", @@ -2146,7 +2146,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -2161,7 +2161,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "sp-api", @@ -2170,7 +2170,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "sp-api", @@ -2383,7 +2383,7 @@ checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" [[package]] name = "generate-bags" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "chrono", "frame-election-provider-support", @@ -4563,7 +4563,7 @@ checksum = "13370dae44474229701bb69b90b4f4dca6404cb0357a2d50d635f1171dc3aa7b" [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -4579,7 +4579,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -4594,7 +4594,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4618,7 +4618,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4638,7 +4638,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4694,7 +4694,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4779,7 +4779,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4796,7 +4796,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4812,7 +4812,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4836,7 +4836,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4854,7 +4854,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4869,7 +4869,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4892,7 +4892,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4908,7 +4908,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4928,7 +4928,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4945,7 +4945,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -4962,7 +4962,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -4980,7 +4980,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -4996,7 +4996,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5013,7 +5013,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -5028,7 +5028,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -5042,7 +5042,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -5059,7 +5059,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5082,7 +5082,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -5097,7 +5097,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -5111,7 +5111,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -5127,7 +5127,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -5148,7 +5148,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -5164,7 +5164,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -5178,7 +5178,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -5212,7 +5212,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "log", "sp-arithmetic", @@ -5221,7 +5221,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -5235,7 +5235,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -5253,7 +5253,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -5272,7 +5272,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-support", "frame-system", @@ -5289,7 +5289,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5306,7 +5306,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5317,7 +5317,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -5334,7 +5334,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -5350,7 +5350,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-benchmarking", "frame-support", @@ -7726,7 +7726,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "env_logger 0.9.0", "jsonrpsee-proc-macros", @@ -7986,7 +7986,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "log", "sp-core", @@ -7997,7 +7997,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "derive_more", @@ -8024,7 +8024,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", @@ -8047,7 +8047,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8063,7 +8063,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8079,7 +8079,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -8090,7 +8090,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "chrono", "fdlimit", @@ -8128,7 +8128,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "fnv", "futures 0.3.17", @@ -8156,7 +8156,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "hash-db", "kvdb", @@ -8181,7 +8181,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "futures 0.3.17", @@ -8205,7 +8205,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "derive_more", @@ -8248,7 +8248,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "derive_more", "futures 0.3.17", @@ -8272,7 +8272,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8285,7 +8285,7 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "assert_matches", "async-trait", @@ -8319,7 +8319,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "futures 0.3.17", @@ -8345,7 +8345,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "sc-client-api", "sp-authorship", @@ -8356,7 +8356,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "lazy_static", "libsecp256k1 0.6.0", @@ -8382,7 +8382,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "derive_more", "environmental", @@ -8400,7 +8400,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "log", "parity-scale-codec", @@ -8416,7 +8416,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8435,7 +8435,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "derive_more", @@ -8472,7 +8472,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "derive_more", "finality-grandpa", @@ -8496,7 +8496,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "ansi_term 0.12.1", "futures 0.3.17", @@ -8513,7 +8513,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "derive_more", @@ -8528,7 +8528,7 @@ dependencies = [ [[package]] name = "sc-light" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "hash-db", "parity-scale-codec", @@ -8546,7 +8546,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-std", "async-trait", @@ -8597,7 +8597,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", @@ -8613,7 +8613,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "bytes 1.0.1", "fnv", @@ -8640,7 +8640,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "libp2p", @@ -8653,7 +8653,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8662,7 +8662,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "hash-db", @@ -8693,7 +8693,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "jsonrpc-core", @@ -8718,7 +8718,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "jsonrpc-core", @@ -8735,7 +8735,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "directories", @@ -8800,7 +8800,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "log", "parity-scale-codec", @@ -8814,7 +8814,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -8836,7 +8836,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "chrono", "futures 0.3.17", @@ -8854,7 +8854,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "ansi_term 0.12.1", "atty", @@ -8883,7 +8883,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -8894,7 +8894,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "intervalier", @@ -8921,7 +8921,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "derive_more", "futures 0.3.17", @@ -8935,7 +8935,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", @@ -9367,7 +9367,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "hash-db", "log", @@ -9384,7 +9384,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "blake2-rfc", "proc-macro-crate 1.0.0", @@ -9396,7 +9396,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "scale-info", @@ -9409,7 +9409,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "integer-sqrt", "num-traits", @@ -9424,7 +9424,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "scale-info", @@ -9437,7 +9437,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "parity-scale-codec", @@ -9449,7 +9449,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "sp-api", @@ -9461,7 +9461,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "log", @@ -9479,7 +9479,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "futures 0.3.17", @@ -9498,7 +9498,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "merlin", @@ -9521,7 +9521,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "scale-info", @@ -9532,7 +9532,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -9544,7 +9544,7 @@ dependencies = [ [[package]] name = "sp-core" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "base58", "blake2-rfc", @@ -9589,7 +9589,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "kvdb", "parking_lot 0.11.1", @@ -9598,7 +9598,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "proc-macro2", "quote", @@ -9608,7 +9608,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "environmental", "parity-scale-codec", @@ -9619,7 +9619,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "finality-grandpa", "log", @@ -9637,7 +9637,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9651,7 +9651,7 @@ dependencies = [ [[package]] name = "sp-io" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "hash-db", @@ -9676,7 +9676,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "lazy_static", "sp-core", @@ -9687,7 +9687,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "derive_more", @@ -9704,7 +9704,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "zstd", ] @@ -9712,7 +9712,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "scale-info", @@ -9727,7 +9727,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -9738,7 +9738,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "sp-api", "sp-core", @@ -9748,7 +9748,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "backtrace", ] @@ -9756,7 +9756,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "rustc-hash", "serde", @@ -9766,7 +9766,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "either", "hash256-std-hasher", @@ -9788,7 +9788,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -9805,7 +9805,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "Inflector", "proc-macro-crate 1.0.0", @@ -9817,7 +9817,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "serde", "serde_json", @@ -9826,7 +9826,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "scale-info", @@ -9840,7 +9840,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "scale-info", @@ -9851,7 +9851,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "hash-db", "log", @@ -9874,12 +9874,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" [[package]] name = "sp-storage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9892,7 +9892,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "log", "sp-core", @@ -9905,7 +9905,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "futures-timer 3.0.2", @@ -9921,7 +9921,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "erased-serde", "log", @@ -9939,7 +9939,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "sp-api", "sp-runtime", @@ -9948,7 +9948,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "log", @@ -9964,7 +9964,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "hash-db", "memory-db", @@ -9979,7 +9979,7 @@ dependencies = [ [[package]] name = "sp-version" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9995,7 +9995,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10006,7 +10006,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10202,7 +10202,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "platforms", ] @@ -10210,7 +10210,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.17", @@ -10232,7 +10232,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-std", "derive_more", @@ -10246,7 +10246,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "async-trait", "futures 0.3.17", @@ -10273,7 +10273,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "futures 0.3.17", "substrate-test-utils-derive", @@ -10283,7 +10283,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -10294,7 +10294,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "ansi_term 0.12.1", "build-helper", @@ -10447,7 +10447,7 @@ dependencies = [ [[package]] name = "test-runner" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ "frame-system", "futures 0.3.17", @@ -10886,8 +10886,9 @@ checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#78ce06139243df5fbbf85356a754e6c97ec7cb9c" +source = "git+https://github.com/paritytech/substrate?branch=master#04bb4e02137f7aba9c20be071bcf9ba6bceaf8da" dependencies = [ + "jsonrpsee-ws-client", "log", "parity-scale-codec", "remote-externalities", @@ -10897,9 +10898,12 @@ dependencies = [ "sc-service", "serde", "sp-core", + "sp-externalities", + "sp-io", "sp-keystore", "sp-runtime", "sp-state-machine", + "sp-version", "structopt", ]