From feb0a7b505dc30023cb17ef58d47a8130f1fb65a Mon Sep 17 00:00:00 2001 From: Niklas Date: Tue, 11 Jan 2022 14:51:54 +0100 Subject: [PATCH 01/27] staking miner: use config for emergency solution Fixes #4678 --- utils/staking-miner/src/emergency_solution.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/utils/staking-miner/src/emergency_solution.rs b/utils/staking-miner/src/emergency_solution.rs index a3847825f5d8..43bfc389cca9 100644 --- a/utils/staking-miner/src/emergency_solution.rs +++ b/utils/staking-miner/src/emergency_solution.rs @@ -18,7 +18,6 @@ use crate::{prelude::*, EmergencySolutionConfig, Error, SharedConfig}; use codec::Encode; -use frame_election_provider_support::SequentialPhragmen; use std::io::Write; macro_rules! emergency_solution_cmd_for { ($runtime:ident) => { paste::paste! { @@ -28,15 +27,15 @@ macro_rules! emergency_solution_cmd_for { ($runtime:ident) => { paste::paste! { config: EmergencySolutionConfig, ) -> Result<(), Error<$crate::[<$runtime _runtime_exports>]::Runtime>> { use $crate::[<$runtime _runtime_exports>]::*; - let mut ext = crate::create_election_ext::(shared.uri.clone(), None, vec![]).await?; + + let mut ext = crate::create_election_ext::(shared.uri.clone(), config.at, vec![]).await?; + let (raw_solution, _witness) = crate::mine_with::(&config.solver, &mut ext, false)?; + ext.execute_with(|| { assert!(EPM::Pallet::::current_phase().is_emergency()); - // NOTE: this internally calls feasibility_check, but we just re-do it here as an easy way - // to get a `ReadySolution`. - let (raw_solution, _) = - >::mine_solution::>()?; log::info!(target: LOG_TARGET, "mined solution with {:?}", &raw_solution.score); + let mut ready_solution = EPM::Pallet::::feasibility_check(raw_solution, EPM::ElectionCompute::Signed)?; // maybe truncate. From 633ee732f47b65a31b037c73bd54b394e042a10e Mon Sep 17 00:00:00 2001 From: Niklas Date: Tue, 11 Jan 2022 14:54:00 +0100 Subject: [PATCH 02/27] bump jsonrpsee --- Cargo.lock | 91 ++++++++++++++++++++++++-- utils/staking-miner/Cargo.toml | 2 +- utils/staking-miner/src/main.rs | 4 +- utils/staking-miner/src/monitor.rs | 39 +++++++++-- utils/staking-miner/src/rpc_helpers.rs | 6 +- 5 files changed, 125 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e8341c1bcc79..51fb471535d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3018,9 +3018,61 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6373a33d987866ccfe1af4bc11b089dce941764313f9fd8b7cf13fcb51b72dc5" dependencies = [ "jsonrpsee-proc-macros", - "jsonrpsee-types", + "jsonrpsee-types 0.4.1", "jsonrpsee-utils", - "jsonrpsee-ws-client", + "jsonrpsee-ws-client 0.4.1", +] + +[[package]] +name = "jsonrpsee" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "726b6cb76e568aefc4cc127fdb39cb9d92c176f4df0385eaf8053f770351719c" +dependencies = [ + "jsonrpsee-core", + "jsonrpsee-types 0.7.0", + "jsonrpsee-ws-client 0.7.0", +] + +[[package]] +name = "jsonrpsee-client-transport" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bc39096d2bd470ecbd5ed96c8464e2b2c2ef7ec6f8cb9611604255608624773" +dependencies = [ + "futures 0.3.18", + "http", + "jsonrpsee-core", + "jsonrpsee-types 0.7.0", + "pin-project 1.0.8", + "soketto", + "thiserror", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "jsonrpsee-core" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b863e5e86a11bfaf46bb3ab5aba184671bd62058e8e3ab741c3395904c7afbf3" +dependencies = [ + "anyhow", + "arrayvec 0.7.2", + "async-trait", + "beef", + "futures-channel", + "futures-util", + "hyper", + "jsonrpsee-types 0.7.0", + "rustc-hash", + "serde", + "serde_json", + "soketto", + "thiserror", + "tokio", + "tracing", ] [[package]] @@ -3055,6 +3107,20 @@ dependencies = [ "thiserror", ] +[[package]] +name = "jsonrpsee-types" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e169725e476234f3f96079fb9d8a6d00226db602d3fa056f044994239a490d78" +dependencies = [ + "anyhow", + "beef", + "serde", + "serde_json", + "thiserror", + "tracing", +] + [[package]] name = "jsonrpsee-utils" version = "0.4.1" @@ -3063,7 +3129,7 @@ checksum = "0109c4f972058f3b1925b73a17210aff7b63b65967264d0045d15ee88fe84f0c" dependencies = [ "arrayvec 0.7.2", "beef", - "jsonrpsee-types", + "jsonrpsee-types 0.4.1", ] [[package]] @@ -3077,7 +3143,7 @@ dependencies = [ "fnv", "futures 0.3.18", "http", - "jsonrpsee-types", + "jsonrpsee-types 0.4.1", "log", "pin-project 1.0.8", "rustls-native-certs", @@ -3090,6 +3156,17 @@ dependencies = [ "tokio-util", ] +[[package]] +name = "jsonrpsee-ws-client" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c97f67449d58b8d90ad57986d12dacab8fd594759ff64eb5e6b6e84e470db977" +dependencies = [ + "jsonrpsee-client-transport", + "jsonrpsee-core", + "jsonrpsee-types 0.7.0", +] + [[package]] name = "keccak" version = "0.1.0" @@ -7684,7 +7761,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#3904d77ad2499ab36b242e52fbe23d5cd8773ad9" dependencies = [ "env_logger 0.9.0", - "jsonrpsee", + "jsonrpsee 0.4.1", "log", "parity-scale-codec", "serde", @@ -10003,7 +10080,7 @@ dependencies = [ "frame-election-provider-support", "frame-support", "frame-system", - "jsonrpsee", + "jsonrpsee 0.7.0", "kusama-runtime", "log", "pallet-balances", @@ -10838,7 +10915,7 @@ name = "try-runtime-cli" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#3904d77ad2499ab36b242e52fbe23d5cd8773ad9" dependencies = [ - "jsonrpsee", + "jsonrpsee 0.4.1", "log", "parity-scale-codec", "remote-externalities", diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index e982dcfde229..bd7b84428055 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -10,7 +10,7 @@ tokio = { version = "1.14", features = ["macros"] } log = "0.4.11" env_logger = "0.9.0" structopt = "0.3.25" -jsonrpsee = { version = "0.4.1", default-features = false, features = ["ws-client"] } +jsonrpsee = { version = "0.7", default-features = false, features = ["ws-client"] } serde_json = "1.0" serde = "1.0.130" paste = "1.0.6" diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 95319f9e24a4..7dea1232049e 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -40,7 +40,7 @@ pub(crate) use signer::get_account_info; use frame_election_provider_support::NposSolver; use frame_support::traits::Get; -use jsonrpsee::ws_client::{WsClient, WsClientBuilder}; +use jsonrpsee::{core::client::Client as WsClient, ws_client::WsClientBuilder}; use remote_externalities::{Builder, Mode, OnlineConfig}; use sp_npos_elections::ExtendedBalance; use sp_runtime::{traits::Block as BlockT, DeserializeOwned}; @@ -225,7 +225,7 @@ macro_rules! any_runtime_unit { #[derive(frame_support::DebugNoBound, thiserror::Error)] enum Error { Io(#[from] std::io::Error), - JsonRpsee(#[from] jsonrpsee::types::Error), + JsonRpsee(#[from] jsonrpsee::core::Error), RpcHelperError(#[from] rpc_helpers::RpcHelperError), Codec(#[from] codec::Error), Crypto(sp_core::crypto::SecretStringError), diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 19259098df53..e5074b34e0e0 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -19,9 +19,11 @@ use crate::{prelude::*, rpc_helpers::*, signer::Signer, Error, MonitorConfig, SharedConfig}; use codec::Encode; use jsonrpsee::{ + core::{ + client::{Client as WsClient, Subscription, SubscriptionClientT}, + Error as RpcError, + }, rpc_params, - types::{traits::SubscriptionClient, Subscription}, - ws_client::WsClient, }; use sc_transaction_pool_api::TransactionStatus; @@ -86,7 +88,22 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { .await .unwrap(); - while let Some(now) = subscription.next().await? { + while let Some(rp) = subscription.next().await { + let now = match rp { + Ok(r) => r, + Err(RpcError::SubscriptionClosed(reason)) => { + log::debug!("[rpc]: subscription closed by the server: {:?}, starting a new one", reason); + continue; + } + Err(e) => { + // NOTE(niklasad1): this should only occur if the response couldn't + // be decoded as `Header`. + log::error!("{:?}", e); + return Err(e.into()); + } + }; + + let hash = now.hash(); log::trace!(target: LOG_TARGET, "new event at #{:?} ({:?})", now.number, hash); @@ -151,7 +168,21 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { } }; - while let Some(status_update) = tx_subscription.next().await? { + while let Some(rp) = tx_subscription.next().await { + let status_update = match rp { + Ok(r) => r, + Err(RpcError::SubscriptionClosed(reason)) => { + log::debug!("[rpc]: subscription closed by the server: {:?}, starting a new one", reason); + continue; + } + Err(e) => { + // NOTE(niklasad1): this should only occur if the response couldn't + // be decoded as `Header`. + log::error!("{:?}", e); + return Err(e.into()); + } + }; + log::trace!(target: LOG_TARGET, "status update {:?}", status_update); match status_update { TransactionStatus::Ready | TransactionStatus::Broadcast(_) | TransactionStatus::Future => continue, diff --git a/utils/staking-miner/src/rpc_helpers.rs b/utils/staking-miner/src/rpc_helpers.rs index 1277564ebd93..153ca0e65c03 100644 --- a/utils/staking-miner/src/rpc_helpers.rs +++ b/utils/staking-miner/src/rpc_helpers.rs @@ -17,12 +17,12 @@ //! Helper method for RPC. use super::*; -use jsonrpsee::types::traits::Client; -pub(crate) use jsonrpsee::types::v2::ParamsSer; +use jsonrpsee::core::client::ClientT; +pub(crate) use jsonrpsee::types::ParamsSer; #[derive(frame_support::DebugNoBound, thiserror::Error)] pub(crate) enum RpcHelperError { - JsonRpsee(#[from] jsonrpsee::types::Error), + JsonRpsee(#[from] jsonrpsee::core::Error), Codec(#[from] codec::Error), } From 4d9644ed26d562117e02969d31ffbf31198dc897 Mon Sep 17 00:00:00 2001 From: Niklas Date: Thu, 13 Jan 2022 16:27:43 +0100 Subject: [PATCH 03/27] run `monitor_cmd_for` until the connection is closed --- Cargo.lock | 4 ++-- utils/staking-miner/src/monitor.rs | 31 ++++++++++++++++++++---------- 2 files changed, 23 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fda4ad06b862..379a82ad8545 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3102,11 +3102,11 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bc39096d2bd470ecbd5ed96c8464e2b2c2ef7ec6f8cb9611604255608624773" dependencies = [ - "futures 0.3.18", + "futures 0.3.19", "http", "jsonrpsee-core", "jsonrpsee-types 0.7.0", - "pin-project 1.0.8", + "pin-project 1.0.10", "soketto", "thiserror", "tokio", diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index e5074b34e0e0..31f7aa492a6a 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -83,11 +83,20 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { loop { log::info!(target: LOG_TARGET, "subscribing to {:?} / {:?}", sub, unsub); - let mut subscription: Subscription
= client - .subscribe(&sub, None, &unsub) - .await - .unwrap(); + let mut subscription = match client.subscribe::
(&sub, None, &unsub).await { + Ok(sub) => sub, + Err(RpcError::RestartNeeded(e)) => { + log::error!("[rpc] connection closed: {:?}", e); + return Err(RpcError::RestartNeeded(e).into()); + } + Err(e) => { + log::warn!("[rpc] subscription: `{}` failed {:?}; retrying", sub, e); + continue; + } + }; + + // If this fails try to re-establish the subscription again in the next loop iteration. while let Some(rp) = subscription.next().await { let now = match rp { Ok(r) => r, @@ -97,8 +106,8 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { } Err(e) => { // NOTE(niklasad1): this should only occur if the response couldn't - // be decoded as `Header`. - log::error!("{:?}", e); + // be decoded as `Header` => it's a bug. + log::error!("[rpc]: subscription failed to decode Header {:?}, this is bug please file an issue", e); return Err(e.into()); } }; @@ -155,6 +164,10 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { .await { Ok(sub) => sub, + Err(RpcError::RestartNeeded(e)) => { + log::error!("{:?}", e); + return Err(RpcError::RestartNeeded(e).into()); + } Err(why) => { // This usually happens when we've been busy with mining for a few blocks, and // now we're receiving the subscriptions of blocks in which we were busy. In @@ -172,13 +185,11 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let status_update = match rp { Ok(r) => r, Err(RpcError::SubscriptionClosed(reason)) => { - log::debug!("[rpc]: subscription closed by the server: {:?}, starting a new one", reason); + log::warn!("[rpc]: subscription closed by the server: {:?}; continuing...", reason); continue; } Err(e) => { - // NOTE(niklasad1): this should only occur if the response couldn't - // be decoded as `Header`. - log::error!("{:?}", e); + log::error!("[rpc]: subscription failed to decode TransactionStatus {:?}, this is a bug please file an issue", e); return Err(e.into()); } }; From 21546b1642a295cf7f521e177b2bce3814235e4f Mon Sep 17 00:00:00 2001 From: Niklas Date: Thu, 13 Jan 2022 19:22:23 +0100 Subject: [PATCH 04/27] new tokio task for submit_and_watch xt --- Cargo.lock | 109 ++++++++++-- utils/staking-miner/Cargo.toml | 4 +- utils/staking-miner/src/main.rs | 2 +- utils/staking-miner/src/monitor.rs | 277 ++++++++++++++++------------- 4 files changed, 254 insertions(+), 138 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 379a82ad8545..2e2a8fc83747 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1335,7 +1335,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1a816186fa68d9e426e3cb4ae4dff1fcd8e4a2c34b781bf7a822574a0d0aac8" dependencies = [ - "sct", + "sct 0.6.1", ] [[package]] @@ -2300,8 +2300,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a1387e07917c711fb4ee4f48ea0adb04a3c9739e53ef85bf43ae1edc2937a8b" dependencies = [ "futures-io", - "rustls", - "webpki", + "rustls 0.19.1", + "webpki 0.21.4", ] [[package]] @@ -2701,11 +2701,11 @@ dependencies = [ "futures-util", "hyper", "log", - "rustls", - "rustls-native-certs", + "rustls 0.19.1", + "rustls-native-certs 0.5.0", "tokio", - "tokio-rustls", - "webpki", + "tokio-rustls 0.22.0", + "webpki 0.21.4", ] [[package]] @@ -3091,6 +3091,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "726b6cb76e568aefc4cc127fdb39cb9d92c176f4df0385eaf8053f770351719c" dependencies = [ + "jsonrpsee-client-transport", "jsonrpsee-core", "jsonrpsee-types 0.7.0", "jsonrpsee-ws-client 0.7.0", @@ -3107,11 +3108,14 @@ dependencies = [ "jsonrpsee-core", "jsonrpsee-types 0.7.0", "pin-project 1.0.10", + "rustls-native-certs 0.6.1", "soketto", "thiserror", "tokio", + "tokio-rustls 0.23.2", "tokio-util", "tracing", + "webpki-roots 0.22.2", ] [[package]] @@ -3208,13 +3212,13 @@ dependencies = [ "jsonrpsee-types 0.4.1", "log", "pin-project 1.0.10", - "rustls-native-certs", + "rustls-native-certs 0.5.0", "serde", "serde_json", "soketto", "thiserror", "tokio", - "tokio-rustls", + "tokio-rustls 0.22.0", "tokio-util", ] @@ -3908,7 +3912,7 @@ dependencies = [ "rw-stream-sink", "soketto", "url 2.2.2", - "webpki-roots", + "webpki-roots 0.21.1", ] [[package]] @@ -8265,8 +8269,20 @@ dependencies = [ "base64", "log", "ring", - "sct", - "webpki", + "sct 0.6.1", + "webpki 0.21.4", +] + +[[package]] +name = "rustls" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d37e5e2290f3e040b594b1a9e04377c2c671f1a1cfd9bfdef82106ac1c113f84" +dependencies = [ + "log", + "ring", + "sct 0.7.0", + "webpki 0.22.0", ] [[package]] @@ -8276,11 +8292,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092" dependencies = [ "openssl-probe", - "rustls", + "rustls 0.19.1", "schannel", "security-framework", ] +[[package]] +name = "rustls-native-certs" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca9ebdfa27d3fc180e42879037b5338ab1c040c06affd00d8338598e7800943" +dependencies = [ + "openssl-probe", + "rustls-pemfile", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-pemfile" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9" +dependencies = [ + "base64", +] + [[package]] name = "rustversion" version = "1.0.6" @@ -9311,6 +9348,16 @@ dependencies = [ "untrusted", ] +[[package]] +name = "sct" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" +dependencies = [ + "ring", + "untrusted", +] + [[package]] name = "secrecy" version = "0.8.0" @@ -10963,9 +11010,20 @@ version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6" dependencies = [ - "rustls", + "rustls 0.19.1", + "tokio", + "webpki 0.21.4", +] + +[[package]] +name = "tokio-rustls" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a27d5f2b839802bd8267fa19b0530f5a08b9c08cd417976be2a65d130fe1c11b" +dependencies = [ + "rustls 0.20.2", "tokio", - "webpki", + "webpki 0.22.0", ] [[package]] @@ -11778,13 +11836,32 @@ dependencies = [ "untrusted", ] +[[package]] +name = "webpki" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" +dependencies = [ + "ring", + "untrusted", +] + [[package]] name = "webpki-roots" version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940" dependencies = [ - "webpki", + "webpki 0.21.4", +] + +[[package]] +name = "webpki-roots" +version = "0.22.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "552ceb903e957524388c4d3475725ff2c8b7960922063af6ce53c9a43da07449" +dependencies = [ + "webpki 0.22.0", ] [[package]] diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 84d00419da0f..a8686f882963 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -6,11 +6,11 @@ edition = "2018" [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0" } -tokio = { version = "1.15", features = ["macros"] } +tokio = { version = "1.15", features = ["macros", "rt-multi-thread", "sync"] } log = "0.4.11" env_logger = "0.9.0" structopt = "0.3.25" -jsonrpsee = { version = "0.7", default-features = false, features = ["ws-client"] } +jsonrpsee = { version = "0.7", default-features = false, features = ["ws-client", "client-ws-transport"] } serde_json = "1.0" serde = "1.0.132" paste = "1.0.6" diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 279b46bfadb7..13a6d822e15d 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -602,7 +602,7 @@ async fn main() { let outcome = any_runtime! { match command.clone() { - Command::Monitor(c) => monitor_cmd(&client, shared, c, signer_account).await + Command::Monitor(c) => monitor_cmd(client, shared, c, signer_account).await .map_err(|e| { log::error!(target: LOG_TARGET, "Monitor error: {:?}", e); }), diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 31f7aa492a6a..f2b985d19312 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -25,9 +25,10 @@ use jsonrpsee::{ }, rpc_params, }; - use sc_transaction_pool_api::TransactionStatus; use sp_core::storage::StorageKey; +use std::sync::Arc; +use tokio::sync::mpsc; /// Ensure that now is the signed phase. async fn ensure_signed_phase( @@ -68,19 +69,23 @@ async fn ensure_no_previous_solution< macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { /// The monitor command. pub(crate) async fn []( - client: &WsClient, + client: WsClient, shared: SharedConfig, config: MonitorConfig, signer: Signer, ) -> Result<(), Error<$crate::[<$runtime _runtime_exports>]::Runtime>> { use $crate::[<$runtime _runtime_exports>]::*; + let client = Arc::new(client); + let (sub, unsub) = if config.listen == "head" { ("chain_subscribeNewHeads", "chain_unsubscribeNewHeads") } else { ("chain_subscribeFinalizedHeads", "chain_unsubscribeFinalizedHeads") }; + let (tx, mut rx) = mpsc::unbounded_channel::(); + loop { log::info!(target: LOG_TARGET, "subscribing to {:?} / {:?}", sub, unsub); @@ -96,130 +101,164 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { } }; - // If this fails try to re-establish the subscription again in the next loop iteration. - while let Some(rp) = subscription.next().await { - let now = match rp { - Ok(r) => r, - Err(RpcError::SubscriptionClosed(reason)) => { - log::debug!("[rpc]: subscription closed by the server: {:?}, starting a new one", reason); - continue; - } - Err(e) => { - // NOTE(niklasad1): this should only occur if the response couldn't - // be decoded as `Header` => it's a bug. - log::error!("[rpc]: subscription failed to decode Header {:?}, this is bug please file an issue", e); - return Err(e.into()); - } - }; - - - let hash = now.hash(); - log::trace!(target: LOG_TARGET, "new event at #{:?} ({:?})", now.number, hash); - - // if the runtime version has changed, terminate. - crate::check_versions::(client).await?; - - // we prefer doing this check before fetching anything into a remote-ext. - if ensure_signed_phase::(client, hash).await.is_err() { - log::debug!(target: LOG_TARGET, "phase closed, not interested in this block at all."); - continue; - }; - - // grab an externalities without staking, just the election snapshot. - let mut ext = crate::create_election_ext::( - shared.uri.clone(), - Some(hash), - vec![], - ).await?; + let rp = tokio::select! { + Some(rp) = subscription.next() => rp, + Some(err) = rx.recv() => return Err(err.into()), + else => { + log::warn!(target: LOG_TARGET, "subscription to {} terminated. Retrying..", sub); + continue + } + }; - if ensure_no_previous_solution::(&mut ext, &signer.account).await.is_err() { - log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."); + let now = match rp { + Ok(r) => r, + Err(RpcError::SubscriptionClosed(reason)) => { + log::debug!("[rpc]: subscription closed by the server: {:?}, starting a new one", reason); continue; } + Err(e) => { + // NOTE(niklasad1): this should only occur if the response couldn't + // be decoded as `Header` => it's a bug. + log::error!("[rpc]: subscription failed to decode Header {:?}, this is bug please file an issue", e); + return Err(e.into()); + } + }; - // mine a solution, and run feasibility check on it as well. - let (raw_solution, witness) = crate::mine_with::(&config.solver, &mut ext, true)?; - log::info!(target: LOG_TARGET, "mined solution with {:?}", &raw_solution.score); - - let nonce = crate::get_account_info::(client, &signer.account, Some(hash)) - .await? - .map(|i| i.nonce) - .expect(crate::signer::SIGNER_ACCOUNT_WILL_EXIST); - let tip = 0 as Balance; - let period = ::BlockHashCount::get() / 2; - let current_block = now.number.saturating_sub(1); - let era = sp_runtime::generic::Era::mortal(period.into(), current_block.into()); - log::trace!( - target: LOG_TARGET, "transaction mortality: {:?} -> {:?}", - era.birth(current_block.into()), - era.death(current_block.into()), - ); - let extrinsic = ext.execute_with(|| create_uxt(raw_solution, witness, signer.clone(), nonce, tip, era)); - let bytes = sp_core::Bytes(extrinsic.encode()); - - let mut tx_subscription: Subscription< - TransactionStatus<::Hash, ::Hash> - > = match client - .subscribe(&"author_submitAndWatchExtrinsic", rpc_params! { bytes }, "author_unwatchExtrinsic") - .await - { - Ok(sub) => sub, - Err(RpcError::RestartNeeded(e)) => { - log::error!("{:?}", e); - return Err(RpcError::RestartNeeded(e).into()); - } - Err(why) => { - // This usually happens when we've been busy with mining for a few blocks, and - // now we're receiving the subscriptions of blocks in which we were busy. In - // these blocks, we still don't have a solution, so we re-compute a new solution - // and submit it with an outdated `Nonce`, which yields most often `Stale` - // error. NOTE: to improve this overall, and to be able to introduce an array of - // other fancy features, we should make this multi-threaded and do the - // computation outside of this callback. - log::warn!(target: LOG_TARGET, "failing to submit a transaction {:?}. continuing...", why); - continue - } - }; - - while let Some(rp) = tx_subscription.next().await { - let status_update = match rp { - Ok(r) => r, - Err(RpcError::SubscriptionClosed(reason)) => { - log::warn!("[rpc]: subscription closed by the server: {:?}; continuing...", reason); - continue; - } - Err(e) => { - log::error!("[rpc]: subscription failed to decode TransactionStatus {:?}, this is a bug please file an issue", e); - return Err(e.into()); - } - }; + let hash = now.hash(); + log::trace!(target: LOG_TARGET, "new event at #{:?} ({:?})", now.number, hash); + + // if the runtime version has changed, terminate. + crate::check_versions::(&*client).await?; - log::trace!(target: LOG_TARGET, "status update {:?}", status_update); - match status_update { - TransactionStatus::Ready | TransactionStatus::Broadcast(_) | TransactionStatus::Future => continue, - TransactionStatus::InBlock(hash) => { - log::info!(target: LOG_TARGET, "included at {:?}", hash); - let key = StorageKey(frame_support::storage::storage_prefix(b"System",b"Events").to_vec()); - let events = get_storage::::Hash>>, - >(client, rpc_params!{ key, hash }).await?.unwrap_or_default(); - log::info!(target: LOG_TARGET, "events at inclusion {:?}", events); - } - TransactionStatus::Retracted(hash) => { - log::info!(target: LOG_TARGET, "Retracted at {:?}", hash); - } - TransactionStatus::Finalized(hash) => { - log::info!(target: LOG_TARGET, "Finalized at {:?}", hash); - break - } - _ => { - log::warn!(target: LOG_TARGET, "Stopping listen due to other status {:?}", status_update); - break - } - } - }; + // we prefer doing this check before fetching anything into a remote-ext. + if ensure_signed_phase::(&*client, hash).await.is_err() { + log::debug!(target: LOG_TARGET, "phase closed, not interested in this block at all."); + continue; + }; + + // grab an externalities without staking, just the election snapshot. + let mut ext = crate::create_election_ext::( + shared.uri.clone(), + Some(hash), + vec![], + ).await?; + + if ensure_no_previous_solution::(&mut ext, &signer.account).await.is_err() { + log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."); + continue; } - log::warn!(target: LOG_TARGET, "subscription to {} terminated. Retrying..", sub) + // mine a solution, and run feasibility check on it as well. + let (raw_solution, witness) = crate::mine_with::(&config.solver, &mut ext, true)?; + log::info!(target: LOG_TARGET, "mined solution with {:?}", &raw_solution.score); + + let nonce = crate::get_account_info::(&*client, &signer.account, Some(hash)) + .await? + .map(|i| i.nonce) + .expect(crate::signer::SIGNER_ACCOUNT_WILL_EXIST); + let tip = 0 as Balance; + let period = ::BlockHashCount::get() / 2; + let current_block = now.number.saturating_sub(1); + let era = sp_runtime::generic::Era::mortal(period.into(), current_block.into()); + log::trace!( + target: LOG_TARGET, "transaction mortality: {:?} -> {:?}", + era.birth(current_block.into()), + era.death(current_block.into()), + ); + let extrinsic = ext.execute_with(|| create_uxt(raw_solution, witness, signer.clone(), nonce, tip, era)); + let bytes = sp_core::Bytes(extrinsic.encode()); + + let client2 = client.clone(); + let tx2 = tx.clone(); + + // send and watch extrinsic + tokio::spawn(async move { + let mut tx_subscription: Subscription< + TransactionStatus<::Hash, ::Hash> + > = match client2.subscribe( + "author_submitAndWatchExtrinsic", + rpc_params! { bytes }, + "author_unwatchExtrinsic" + ).await { + Ok(sub) => sub, + Err(RpcError::RestartNeeded(e)) => { + log::error!("{:?}", e); + tx2.send(RpcError::RestartNeeded(e)).unwrap(); + return + }, + Err(why) => { + // This usually happens when we've been busy with mining for a few blocks, and + // now we're receiving the subscriptions of blocks in which we were busy. In + // these blocks, we still don't have a solution, so we re-compute a new solution + // and submit it with an outdated `Nonce`, which yields most often `Stale` + // error. NOTE: to improve this overall, and to be able to introduce an array of + // other fancy features, we should make this multi-threaded and do the + // computation outside of this callback. + log::warn!( + target: LOG_TARGET, + "failing to submit a transaction {:?}. continuing...", + why + ); + return; + }, + }; + + while let Some(rp) = tx_subscription.next().await { + let status_update = match rp { + Ok(r) => r, + Err(RpcError::SubscriptionClosed(reason)) => { + log::warn!( + "[rpc]: subscription closed by the server: {:?}; continuing...", + reason + ); + continue + }, + Err(e) => { + log::error!("[rpc]: subscription failed to decode TransactionStatus {:?}, this is a bug please file an issue", e); + tx2.send(e).unwrap(); + return; + }, + }; + + log::trace!(target: LOG_TARGET, "status update {:?}", status_update); + match status_update { + TransactionStatus::Ready | + TransactionStatus::Broadcast(_) | + TransactionStatus::Future => continue, + TransactionStatus::InBlock(hash) => { + log::info!(target: LOG_TARGET, "included at {:?}", hash); + let key = StorageKey( + frame_support::storage::storage_prefix(b"System", b"Events").to_vec(), + ); + + // TODO(niklasad1): what to do if this fails; the task will die here now + let events = get_storage::< + Vec::Hash>>, + >(&*client2, rpc_params! { key, hash }) + .await + .unwrap() + .unwrap_or_default(); + + log::info!(target: LOG_TARGET, "events at inclusion {:?}", events); + }, + TransactionStatus::Retracted(hash) => { + log::info!(target: LOG_TARGET, "Retracted at {:?}", hash); + }, + TransactionStatus::Finalized(hash) => { + log::info!(target: LOG_TARGET, "Finalized at {:?}", hash); + break + }, + _ => { + log::warn!( + target: LOG_TARGET, + "Stopping listen due to other status {:?}", + status_update + ); + break + }, + }; + } + }); } } }}} From 00ff01425ea6cf660ce5631f5f3b922db6113fb5 Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 14 Jan 2022 16:14:31 +0100 Subject: [PATCH 05/27] re-use header subscription --- runtime/polkadot/constants/src/lib.rs | 2 +- runtime/polkadot/src/lib.rs | 2 +- utils/staking-miner/README.md | 7 + utils/staking-miner/src/monitor.rs | 323 +++++++++++++++----------- 4 files changed, 196 insertions(+), 138 deletions(-) diff --git a/runtime/polkadot/constants/src/lib.rs b/runtime/polkadot/constants/src/lib.rs index 37c26c62074f..2e48a11a1115 100644 --- a/runtime/polkadot/constants/src/lib.rs +++ b/runtime/polkadot/constants/src/lib.rs @@ -40,7 +40,7 @@ pub mod time { use primitives::v0::{BlockNumber, Moment}; pub const MILLISECS_PER_BLOCK: Moment = 6000; pub const SLOT_DURATION: Moment = MILLISECS_PER_BLOCK; - pub const EPOCH_DURATION_IN_SLOTS: BlockNumber = 4 * HOURS; + pub const EPOCH_DURATION_IN_SLOTS: BlockNumber = 1 * MINUTES; // These time units are defined in number of blocks. pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber); diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 69c419e048c4..e97da07c941a 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -521,7 +521,7 @@ pallet_staking_reward_curve::build! { parameter_types! { // Six sessions in an era (24 hours). - pub const SessionsPerEra: SessionIndex = 6; + pub const SessionsPerEra: SessionIndex = 2; // 28 eras for unbonding (28 days). pub const BondingDuration: pallet_staking::EraIndex = 28; pub const SlashDeferDuration: pallet_staking::EraIndex = 27; diff --git a/utils/staking-miner/README.md b/utils/staking-miner/README.md index 944f870d6dfc..6355395b1ab1 100644 --- a/utils/staking-miner/README.md +++ b/utils/staking-miner/README.md @@ -59,3 +59,10 @@ docker run --rm -it \ -e URI=wss://your-node:9944 \ staking-miner dry-run ``` + +### Test locally + +1. Modify `EPOCH_DURATION_IN_SLOTS` and `SessionsPerEra` to force an election + more often than once per day. +2. $ polkadot --chain polkadot-dev --tmp --alice --execution Native -lruntime=debug --offchain-worker=Always --ws-port 9999 +3. $ staking-miner --uri ws://localhost:9999 --seed //Alice monitor phrag-mms diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index f2b985d19312..d52ac749518b 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -67,6 +67,7 @@ async fn ensure_no_previous_solution< } macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { + /// The monitor command. pub(crate) async fn []( client: WsClient, @@ -75,190 +76,240 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { signer: Signer, ) -> Result<(), Error<$crate::[<$runtime _runtime_exports>]::Runtime>> { use $crate::[<$runtime _runtime_exports>]::*; + type StakingMinerError = Error<$crate::[<$runtime _runtime_exports>]::Runtime>; let client = Arc::new(client); - let (sub, unsub) = if config.listen == "head" { ("chain_subscribeNewHeads", "chain_unsubscribeNewHeads") } else { ("chain_subscribeFinalizedHeads", "chain_unsubscribeFinalizedHeads") }; - let (tx, mut rx) = mpsc::unbounded_channel::(); + /// Create a new header subscription + /// + /// Fails if the connection is closed or fails after 10 attempts. + async fn create_header_subscription( + client: &WsClient, + sub: &str, + unsub: &str + ) -> Result, StakingMinerError> { + let mut last_err = None; + for _ in 0..10 { + match client.subscribe(&sub, None, &unsub).await { + Ok(sub) => return Ok(sub), + Err(RpcError::RestartNeeded(e)) => { + log::error!("[rpc] connection closed: {:?}", e); + return Err(RpcError::RestartNeeded(e).into()); + } + Err(e) => { + log::warn!("[rpc] subscription: `{}` failed {:?}; retrying", sub, e); + last_err = Some(e.into()); + continue; + } + }; + }; - loop { - log::info!(target: LOG_TARGET, "subscribing to {:?} / {:?}", sub, unsub); + Err(last_err.expect("looped 10 times must be Some; qed")) + } - let mut subscription = match client.subscribe::
(&sub, None, &unsub).await { - Ok(sub) => sub, - Err(RpcError::RestartNeeded(e)) => { - log::error!("[rpc] connection closed: {:?}", e); - return Err(RpcError::RestartNeeded(e).into()); - } - Err(e) => { - log::warn!("[rpc] subscription: `{}` failed {:?}; retrying", sub, e); - continue; - } - }; + let (tx, mut rx) = mpsc::unbounded_channel::>(); + let mut subscription = create_header_subscription(&*client, sub, unsub).await?; - let rp = tokio::select! { - Some(rp) = subscription.next() => rp, - Some(err) = rx.recv() => return Err(err.into()), + loop { + let at = tokio::select! { + Some(rp) = subscription.next() => { + match rp { + Ok(r) => r, + Err(RpcError::SubscriptionClosed(reason)) => { + log::debug!("[rpc]: subscription closed by the server: {:?}, starting a new one", reason); + continue; + } + Err(e) => { + log::error!("[rpc]: subscription failed to decode Header {:?}, this is bug please file an issue", e); + return Err(e.into()); + } + } + }, + Some(err) = rx.recv() => return Err(err), else => { + log::warn!("[rpc]: restarting header subscription"); + subscription = create_header_subscription(&*client, sub, unsub).await?; log::warn!(target: LOG_TARGET, "subscription to {} terminated. Retrying..", sub); continue } }; - let now = match rp { - Ok(r) => r, - Err(RpcError::SubscriptionClosed(reason)) => { - log::debug!("[rpc]: subscription closed by the server: {:?}, starting a new one", reason); - continue; - } - Err(e) => { - // NOTE(niklasad1): this should only occur if the response couldn't - // be decoded as `Header` => it's a bug. - log::error!("[rpc]: subscription failed to decode Header {:?}, this is bug please file an issue", e); - return Err(e.into()); - } - }; + log::info!(target: LOG_TARGET, "subscribing to {:?} / {:?} at: {}", sub, unsub, at.number()); + + // Spawn task and non-recoverable errors are sent back to the main task + // such as if the connection has been closed. + tokio::spawn(send_and_watch_extrinsic(client.clone(), tx.clone(), at, signer.clone(), shared.clone(), config.clone())); + } + + /// Construct extrinsic at given block and watch it. + async fn send_and_watch_extrinsic( + client: Arc, + tx: mpsc::UnboundedSender, + at: Header, + signer: Signer, + shared: SharedConfig, + config: MonitorConfig, + ) { - let hash = now.hash(); - log::trace!(target: LOG_TARGET, "new event at #{:?} ({:?})", now.number, hash); + let hash = at.hash(); + log::trace!(target: LOG_TARGET, "new event at #{:?} ({:?})", at.number, hash); // if the runtime version has changed, terminate. - crate::check_versions::(&*client).await?; + if let Err(err) = crate::check_versions::(&*client).await { + let _ = tx.send(err.into()); + return; + } // we prefer doing this check before fetching anything into a remote-ext. if ensure_signed_phase::(&*client, hash).await.is_err() { log::debug!(target: LOG_TARGET, "phase closed, not interested in this block at all."); - continue; - }; + return; + } // grab an externalities without staking, just the election snapshot. - let mut ext = crate::create_election_ext::( + let mut ext = match crate::create_election_ext::( shared.uri.clone(), Some(hash), vec![], - ).await?; + ).await { + Ok(ext) => ext, + Err(err) => { + let _ = tx.send(err); + return; + } + }; if ensure_no_previous_solution::(&mut ext, &signer.account).await.is_err() { log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."); - continue; + return; } // mine a solution, and run feasibility check on it as well. - let (raw_solution, witness) = crate::mine_with::(&config.solver, &mut ext, true)?; + let (raw_solution, witness) = match crate::mine_with::(&config.solver, &mut ext, true) { + Ok(r) => r, + Err(err) => { + let _ = tx.send(err.into()); + return; + } + }; + log::info!(target: LOG_TARGET, "mined solution with {:?}", &raw_solution.score); - let nonce = crate::get_account_info::(&*client, &signer.account, Some(hash)) - .await? - .map(|i| i.nonce) - .expect(crate::signer::SIGNER_ACCOUNT_WILL_EXIST); + let nonce = match crate::get_account_info::(&*client, &signer.account, Some(hash)).await { + Ok(maybe_account) => { + let acc = maybe_account.expect(crate::signer::SIGNER_ACCOUNT_WILL_EXIST); + acc.nonce + } + Err(err) => { + let _ = tx.send(err); + return; + } + }; + let tip = 0 as Balance; let period = ::BlockHashCount::get() / 2; - let current_block = now.number.saturating_sub(1); + let current_block = at.number.saturating_sub(1); let era = sp_runtime::generic::Era::mortal(period.into(), current_block.into()); + log::trace!( target: LOG_TARGET, "transaction mortality: {:?} -> {:?}", era.birth(current_block.into()), era.death(current_block.into()), ); + let extrinsic = ext.execute_with(|| create_uxt(raw_solution, witness, signer.clone(), nonce, tip, era)); let bytes = sp_core::Bytes(extrinsic.encode()); - let client2 = client.clone(); - let tx2 = tx.clone(); - - // send and watch extrinsic - tokio::spawn(async move { - let mut tx_subscription: Subscription< - TransactionStatus<::Hash, ::Hash> - > = match client2.subscribe( - "author_submitAndWatchExtrinsic", - rpc_params! { bytes }, - "author_unwatchExtrinsic" - ).await { - Ok(sub) => sub, - Err(RpcError::RestartNeeded(e)) => { - log::error!("{:?}", e); - tx2.send(RpcError::RestartNeeded(e)).unwrap(); - return - }, - Err(why) => { - // This usually happens when we've been busy with mining for a few blocks, and - // now we're receiving the subscriptions of blocks in which we were busy. In - // these blocks, we still don't have a solution, so we re-compute a new solution - // and submit it with an outdated `Nonce`, which yields most often `Stale` - // error. NOTE: to improve this overall, and to be able to introduce an array of - // other fancy features, we should make this multi-threaded and do the - // computation outside of this callback. - log::warn!( - target: LOG_TARGET, - "failing to submit a transaction {:?}. continuing...", - why - ); - return; - }, - }; - - while let Some(rp) = tx_subscription.next().await { - let status_update = match rp { - Ok(r) => r, - Err(RpcError::SubscriptionClosed(reason)) => { - log::warn!( - "[rpc]: subscription closed by the server: {:?}; continuing...", - reason - ); - continue - }, - Err(e) => { - log::error!("[rpc]: subscription failed to decode TransactionStatus {:?}, this is a bug please file an issue", e); - tx2.send(e).unwrap(); - return; - }, - }; - - log::trace!(target: LOG_TARGET, "status update {:?}", status_update); - match status_update { - TransactionStatus::Ready | - TransactionStatus::Broadcast(_) | - TransactionStatus::Future => continue, - TransactionStatus::InBlock(hash) => { - log::info!(target: LOG_TARGET, "included at {:?}", hash); - let key = StorageKey( - frame_support::storage::storage_prefix(b"System", b"Events").to_vec(), - ); - - // TODO(niklasad1): what to do if this fails; the task will die here now - let events = get_storage::< - Vec::Hash>>, - >(&*client2, rpc_params! { key, hash }) - .await - .unwrap() - .unwrap_or_default(); - - log::info!(target: LOG_TARGET, "events at inclusion {:?}", events); - }, - TransactionStatus::Retracted(hash) => { - log::info!(target: LOG_TARGET, "Retracted at {:?}", hash); - }, - TransactionStatus::Finalized(hash) => { - log::info!(target: LOG_TARGET, "Finalized at {:?}", hash); - break - }, - _ => { - log::warn!( - target: LOG_TARGET, - "Stopping listen due to other status {:?}", - status_update - ); - break - }, - }; - } - }); + let mut tx_subscription: Subscription< + TransactionStatus<::Hash, ::Hash> + > = match client.subscribe( + "author_submitAndWatchExtrinsic", + rpc_params! { bytes }, + "author_unwatchExtrinsic" + ).await { + Ok(sub) => sub, + Err(RpcError::RestartNeeded(e)) => { + log::error!("{:?}", e); + let _ = tx.send(RpcError::RestartNeeded(e).into()); + return + }, + Err(why) => { + // This usually happens when we've been busy with mining for a few blocks, and + // now we're receiving the subscriptions of blocks in which we were busy. In + // these blocks, we still don't have a solution, so we re-compute a new solution + // and submit it with an outdated `Nonce`, which yields most often `Stale` + // error. NOTE: to improve this overall, and to be able to introduce an array of + // other fancy features, we should make this multi-threaded and do the + // computation outside of this callback. + log::warn!( + target: LOG_TARGET, + "failing to submit a transaction {:?}. continuing...", + why + ); + return; + }, + }; + + while let Some(rp) = tx_subscription.next().await { + let status_update = match rp { + Ok(r) => r, + Err(RpcError::SubscriptionClosed(reason)) => { + log::warn!( + "[rpc]: subscription closed by the server: {:?}; continuing...", + reason + ); + continue + }, + Err(e) => { + log::error!("[rpc]: subscription failed to decode TransactionStatus {:?}, this is a bug please file an issue", e); + let _ = tx.send(e.into()); + return; + }, + }; + + log::trace!(target: LOG_TARGET, "status update {:?}", status_update); + match status_update { + TransactionStatus::Ready | + TransactionStatus::Broadcast(_) | + TransactionStatus::Future => continue, + TransactionStatus::InBlock(hash) => { + log::info!(target: LOG_TARGET, "included at {:?}", hash); + let key = StorageKey( + frame_support::storage::storage_prefix(b"System", b"Events").to_vec(), + ); + + // TODO(niklasad1): what to do if this fails; the task will die here now + let events = get_storage::< + Vec::Hash>>, + >(&*client, rpc_params! { key, hash }) + .await + .unwrap() + .unwrap_or_default(); + + log::info!(target: LOG_TARGET, "events at inclusion {:?}", events); + }, + TransactionStatus::Retracted(hash) => { + log::info!(target: LOG_TARGET, "Retracted at {:?}", hash); + }, + TransactionStatus::Finalized(hash) => { + log::info!(target: LOG_TARGET, "Finalized at {:?}", hash); + break + }, + _ => { + log::warn!( + target: LOG_TARGET, + "Stopping listen due to other status {:?}", + status_update + ); + break + }, + }; + } } } }}} From ecfe004eb2b06b2b89ec7fa0b4a2aacb389d21aa Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 24 Jan 2022 11:02:25 +0100 Subject: [PATCH 06/27] update jsonrpsee + simplify code --- Cargo.lock | 33 +++++------ utils/staking-miner/Cargo.toml | 2 +- utils/staking-miner/src/main.rs | 2 +- utils/staking-miner/src/monitor.rs | 93 +++++++++++++++--------------- 4 files changed, 63 insertions(+), 67 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e9bb59e59962..75e37b57c029 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3070,26 +3070,25 @@ dependencies = [ [[package]] name = "jsonrpsee" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "726b6cb76e568aefc4cc127fdb39cb9d92c176f4df0385eaf8053f770351719c" +checksum = "05fd8cd6c6b1bbd06881d2cf88f1fc83cc36c98f2219090f839115fb4a956cb9" dependencies = [ - "jsonrpsee-client-transport", "jsonrpsee-core", - "jsonrpsee-types 0.7.0", - "jsonrpsee-ws-client 0.7.0", + "jsonrpsee-types 0.8.0", + "jsonrpsee-ws-client 0.8.0", ] [[package]] name = "jsonrpsee-client-transport" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bc39096d2bd470ecbd5ed96c8464e2b2c2ef7ec6f8cb9611604255608624773" +checksum = "3303cdf246e6ab76e2866fb3d9acb6c76a068b1b28bd923a1b7a8122257ad7b5" dependencies = [ "futures 0.3.19", "http", "jsonrpsee-core", - "jsonrpsee-types 0.7.0", + "jsonrpsee-types 0.8.0", "pin-project 1.0.10", "rustls-native-certs 0.6.1", "soketto", @@ -3103,9 +3102,9 @@ dependencies = [ [[package]] name = "jsonrpsee-core" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b863e5e86a11bfaf46bb3ab5aba184671bd62058e8e3ab741c3395904c7afbf3" +checksum = "f220b5a238dc7992b90f1144fbf6eaa585872c9376afe6fe6863ffead6191bf3" dependencies = [ "anyhow", "arrayvec 0.7.2", @@ -3114,7 +3113,7 @@ dependencies = [ "futures-channel", "futures-util", "hyper", - "jsonrpsee-types 0.7.0", + "jsonrpsee-types 0.8.0", "rustc-hash", "serde", "serde_json", @@ -3158,9 +3157,9 @@ dependencies = [ [[package]] name = "jsonrpsee-types" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e169725e476234f3f96079fb9d8a6d00226db602d3fa056f044994239a490d78" +checksum = "c1b3f601bbbe45cd63f5407b6f7d7950e08a7d4f82aa699ff41a4a5e9e54df58" dependencies = [ "anyhow", "beef", @@ -3207,13 +3206,13 @@ dependencies = [ [[package]] name = "jsonrpsee-ws-client" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c97f67449d58b8d90ad57986d12dacab8fd594759ff64eb5e6b6e84e470db977" +checksum = "aff425cee7c779e33920913bc695447416078ee6d119f443f3060feffa4e86b5" dependencies = [ "jsonrpsee-client-transport", "jsonrpsee-core", - "jsonrpsee-types 0.7.0", + "jsonrpsee-types 0.8.0", ] [[package]] @@ -10381,7 +10380,7 @@ dependencies = [ "frame-election-provider-support", "frame-support", "frame-system", - "jsonrpsee 0.7.0", + "jsonrpsee 0.8.0", "kusama-runtime", "log", "pallet-balances", diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index a8686f882963..c4124024fe6b 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -10,7 +10,7 @@ tokio = { version = "1.15", features = ["macros", "rt-multi-thread", "sync"] } log = "0.4.11" env_logger = "0.9.0" structopt = "0.3.25" -jsonrpsee = { version = "0.7", default-features = false, features = ["ws-client", "client-ws-transport"] } +jsonrpsee = { version = "0.8", default-features = false, features = ["ws-client"] } serde_json = "1.0" serde = "1.0.132" paste = "1.0.6" diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index ee9f9363eebc..f911e4e90412 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -40,7 +40,7 @@ pub(crate) use signer::get_account_info; use frame_election_provider_support::NposSolver; use frame_support::traits::Get; -use jsonrpsee::{core::client::Client as WsClient, ws_client::WsClientBuilder}; +use jsonrpsee::ws_client::{WsClient, WsClientBuilder}; use remote_externalities::{Builder, Mode, OnlineConfig}; use sp_npos_elections::ExtendedBalance; use sp_runtime::{traits::Block as BlockT, DeserializeOwned}; diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index d52ac749518b..b7d9c9df8948 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -20,10 +20,11 @@ use crate::{prelude::*, rpc_helpers::*, signer::Signer, Error, MonitorConfig, Sh use codec::Encode; use jsonrpsee::{ core::{ - client::{Client as WsClient, Subscription, SubscriptionClientT}, + client::{Subscription, SubscriptionClientT}, Error as RpcError, }, rpc_params, + ws_client::WsClient, }; use sc_transaction_pool_api::TransactionStatus; use sp_core::storage::StorageKey; @@ -78,64 +79,47 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { use $crate::[<$runtime _runtime_exports>]::*; type StakingMinerError = Error<$crate::[<$runtime _runtime_exports>]::Runtime>; - let client = Arc::new(client); let (sub, unsub) = if config.listen == "head" { ("chain_subscribeNewHeads", "chain_unsubscribeNewHeads") } else { ("chain_subscribeFinalizedHeads", "chain_unsubscribeFinalizedHeads") }; - /// Create a new header subscription - /// - /// Fails if the connection is closed or fails after 10 attempts. - async fn create_header_subscription( - client: &WsClient, - sub: &str, - unsub: &str - ) -> Result, StakingMinerError> { - let mut last_err = None; - for _ in 0..10 { - match client.subscribe(&sub, None, &unsub).await { - Ok(sub) => return Ok(sub), - Err(RpcError::RestartNeeded(e)) => { - log::error!("[rpc] connection closed: {:?}", e); - return Err(RpcError::RestartNeeded(e).into()); - } - Err(e) => { - log::warn!("[rpc] subscription: `{}` failed {:?}; retrying", sub, e); - last_err = Some(e.into()); - continue; - } - }; - }; - - Err(last_err.expect("looped 10 times must be Some; qed")) - } + let mut subscription: Subscription
= client.subscribe(&sub, None, &unsub).await?; - let (tx, mut rx) = mpsc::unbounded_channel::>(); - let mut subscription = create_header_subscription(&*client, sub, unsub).await?; + let client = Arc::new(client); + let (tx, mut rx) = mpsc::unbounded_channel::(); loop { let at = tokio::select! { - Some(rp) = subscription.next() => { - match rp { - Ok(r) => r, - Err(RpcError::SubscriptionClosed(reason)) => { + maybe_rp = subscription.next() => { + match maybe_rp { + Some(Ok(r)) => r, + // Custom `jsonrpsee` message; should not occur. + Some(Err(RpcError::SubscriptionClosed(reason))) => { log::debug!("[rpc]: subscription closed by the server: {:?}, starting a new one", reason); continue; } - Err(e) => { + Some(Err(e)) => { log::error!("[rpc]: subscription failed to decode Header {:?}, this is bug please file an issue", e); return Err(e.into()); } + // The subscription was dropped, should only happen if: + // - the connection was closed. + // - the subscription could not need keep up with the server. + None => { + log::warn!("[rpc]: restarting header subscription"); + subscription = client.subscribe(&sub, None, &unsub).await?; + log::warn!(target: LOG_TARGET, "subscription to {} terminated. Retrying..", sub); + continue + } } }, - Some(err) = rx.recv() => return Err(err), - else => { - log::warn!("[rpc]: restarting header subscription"); - subscription = create_header_subscription(&*client, sub, unsub).await?; - log::warn!(target: LOG_TARGET, "subscription to {} terminated. Retrying..", sub); - continue + maybe_err = rx.recv() => { + match maybe_err { + Some(err) => return Err(err), + None => unreachable!("at least one sender kept in the main loop should always return Some; qed"), + } } }; @@ -143,7 +127,9 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { // Spawn task and non-recoverable errors are sent back to the main task // such as if the connection has been closed. - tokio::spawn(send_and_watch_extrinsic(client.clone(), tx.clone(), at, signer.clone(), shared.clone(), config.clone())); + tokio::spawn( + send_and_watch_extrinsic(client.clone(), tx.clone(), at, signer.clone(), shared.clone(), config.clone()) + ); } /// Construct extrinsic at given block and watch it. @@ -234,7 +220,6 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { ).await { Ok(sub) => sub, Err(RpcError::RestartNeeded(e)) => { - log::error!("{:?}", e); let _ = tx.send(RpcError::RestartNeeded(e).into()); return }, @@ -258,6 +243,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { while let Some(rp) = tx_subscription.next().await { let status_update = match rp { Ok(r) => r, + // Custom `jsonrpsee` message; should not occur. Err(RpcError::SubscriptionClosed(reason)) => { log::warn!( "[rpc]: subscription closed by the server: {:?}; continuing...", @@ -282,14 +268,25 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let key = StorageKey( frame_support::storage::storage_prefix(b"System", b"Events").to_vec(), ); + let key2 = key.clone(); - // TODO(niklasad1): what to do if this fails; the task will die here now - let events = get_storage::< + let events = match get_storage::< Vec::Hash>>, >(&*client, rpc_params! { key, hash }) - .await - .unwrap() - .unwrap_or_default(); + .await { + Ok(rp) => rp.unwrap_or_default(), + Err(RpcHelperError::JsonRpsee(RpcError::RestartNeeded(e))) => { + let _ = tx.send(RpcError::RestartNeeded(e).into()); + return; + } + // Decoding or other RPC error => just terminate the task. + Err(e) => { + log::warn!(target: LOG_TARGET, "get_storage [key: {:?}, hash: {:?}] failed: {:?}", + key2, hash, e + ); + return; + } + }; log::info!(target: LOG_TARGET, "events at inclusion {:?}", events); }, From 5fddbbec40702c122b079526915cabac8facdbc1 Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 24 Jan 2022 11:49:57 +0100 Subject: [PATCH 07/27] revert polkadot runtime changes --- runtime/polkadot/constants/src/lib.rs | 2 +- runtime/polkadot/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/polkadot/constants/src/lib.rs b/runtime/polkadot/constants/src/lib.rs index 2e48a11a1115..37c26c62074f 100644 --- a/runtime/polkadot/constants/src/lib.rs +++ b/runtime/polkadot/constants/src/lib.rs @@ -40,7 +40,7 @@ pub mod time { use primitives::v0::{BlockNumber, Moment}; pub const MILLISECS_PER_BLOCK: Moment = 6000; pub const SLOT_DURATION: Moment = MILLISECS_PER_BLOCK; - pub const EPOCH_DURATION_IN_SLOTS: BlockNumber = 1 * MINUTES; + pub const EPOCH_DURATION_IN_SLOTS: BlockNumber = 4 * HOURS; // These time units are defined in number of blocks. pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber); diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index bfcffb6ad2ba..13dd2375e0f9 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -534,7 +534,7 @@ pallet_staking_reward_curve::build! { parameter_types! { // Six sessions in an era (24 hours). - pub const SessionsPerEra: SessionIndex = 2; + pub const SessionsPerEra: SessionIndex = 6; // 28 eras for unbonding (28 days). pub const BondingDuration: sp_staking::EraIndex = 28; pub const SlashDeferDuration: sp_staking::EraIndex = 27; From b760a30982c444c0f5336f0f24f91feedddb2405 Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 24 Jan 2022 18:56:39 +0100 Subject: [PATCH 08/27] feat: add `ensure_no_better_solution` function --- utils/staking-miner/src/main.rs | 24 +++++++++++++++-- utils/staking-miner/src/monitor.rs | 41 ++++++++++++++++++++++++++++-- 2 files changed, 61 insertions(+), 4 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index f911e4e90412..1af07eee98a1 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -43,8 +43,8 @@ use frame_support::traits::Get; use jsonrpsee::ws_client::{WsClient, WsClientBuilder}; use remote_externalities::{Builder, Mode, OnlineConfig}; use sp_npos_elections::ExtendedBalance; -use sp_runtime::{traits::Block as BlockT, DeserializeOwned}; -use structopt::StructOpt; +use sp_runtime::{traits::Block as BlockT, DeserializeOwned, Perbill}; +use structopt::{clap::arg_enum, StructOpt}; pub(crate) enum AnyRuntime { Polkadot, @@ -240,6 +240,7 @@ enum Error { IncorrectPhase, AlreadySubmitted, VersionMismatch, + AlreadyExistSolutionWithBetterScore, } impl From for Error { @@ -294,6 +295,21 @@ enum Solvers { }, } +arg_enum! { + #[derive(Debug, Copy, Clone, StructOpt)] + enum SubmissionStrategy { + // Only submit if at the time, we are the best. + OnlySubmitIfLeading, + // Always submit. + AlwaysSubmit + // TODO(niklasad1): fix Perbill with type in some other way + // + // Submit if we are leading, or if the solution that's leading is more that the given `Perbill` + // better than us. This helps detect obviously fake solutions and still combat them. + //SubmitIfClaimBetterThan(Perbill)*/ + } +} + frame_support::parameter_types! { /// Number of balancing iterations for a solution algorithm. Set based on the [`Solvers`] CLI /// config. @@ -314,6 +330,10 @@ struct MonitorConfig { /// The solver algorithm to use. #[structopt(subcommand)] solver: Solvers, + + /// Submission strategy to use. + #[structopt(possible_values = &SubmissionStrategy::variants(), case_insensitive = true)] + submission_strategy: SubmissionStrategy, } #[derive(Debug, Clone, StructOpt)] diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index b7d9c9df8948..f008241e4d0e 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -16,7 +16,10 @@ //! The monitor command. -use crate::{prelude::*, rpc_helpers::*, signer::Signer, Error, MonitorConfig, SharedConfig}; +use crate::{ + prelude::*, rpc_helpers::*, signer::Signer, Error, MonitorConfig, SharedConfig, + SubmissionStrategy, +}; use codec::Encode; use jsonrpsee::{ core::{ @@ -28,6 +31,7 @@ use jsonrpsee::{ }; use sc_transaction_pool_api::TransactionStatus; use sp_core::storage::StorageKey; +use sp_runtime::Perbill; use std::sync::Arc; use tokio::sync::mpsc; @@ -37,6 +41,7 @@ async fn ensure_signed_phase( at: B::Hash, ) -> Result<(), Error> { let key = StorageKey(EPM::CurrentPhase::::hashed_key().to_vec()); + let phase = get_storage::>(client, rpc_params! {key, at}) .await .map_err::, _>(Into::into)? @@ -67,6 +72,33 @@ async fn ensure_no_previous_solution< }) } +/// Queries the chain for the best solution and checks whether the computed score +/// is better than best known. +async fn ensure_no_better_solution( + client: &WsClient, + at: B::Hash, + score: sp_npos_elections::ElectionScore, + strategy: SubmissionStrategy, +) -> Result<(), Error> { + match strategy { + SubmissionStrategy::AlwaysSubmit => Ok(()), + SubmissionStrategy::OnlySubmitIfLeading => { + let key = StorageKey(EPM::QueuedSolution::::hashed_key().to_vec()); + let best_score = + get_storage::>(client, rpc_params! {key, at}) + .await + .map_err::, _>(Into::into)? + .map(|s| s.score) + .unwrap_or_default(); + if sp_npos_elections::is_score_better(score, best_score, Perbill::zero()) { + Ok(()) + } else { + Err(Error::AlreadyExistSolutionWithBetterScore) + } + }, + } +} + macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { /// The monitor command. @@ -184,7 +216,8 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { } }; - log::info!(target: LOG_TARGET, "mined solution with {:?}", &raw_solution.score); + let score = raw_solution.score; + log::info!(target: LOG_TARGET, "mined solution with {:?}", score); let nonce = match crate::get_account_info::(&*client, &signer.account, Some(hash)).await { Ok(maybe_account) => { @@ -211,6 +244,10 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let extrinsic = ext.execute_with(|| create_uxt(raw_solution, witness, signer.clone(), nonce, tip, era)); let bytes = sp_core::Bytes(extrinsic.encode()); + if ensure_no_better_solution::(&*client, hash, score, config.submission_strategy).await.is_err() { + return; + } + let mut tx_subscription: Subscription< TransactionStatus<::Hash, ::Hash> > = match client.subscribe( From 69a309625e562f3c9c12f5d85186d61f9e714f05 Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 31 Jan 2022 17:45:06 +0100 Subject: [PATCH 09/27] storage access for submissions and indices --- utils/staking-miner/src/main.rs | 8 ++-- utils/staking-miner/src/monitor.rs | 67 ++++++++++++++++++++++++++---- 2 files changed, 62 insertions(+), 13 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 9c0c44278b77..212905d5ff55 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -300,7 +300,7 @@ enum SubmissionStrategy { // Only submit if at the time, we are the best. OnlySubmitIfLeading, // Always submit. - AlwaysSubmit + AlwaysSubmit, // TODO(niklasad1): fix Perbill with type in some other way // // Submit if we are leading, or if the solution that's leading is more that the given `Perbill` @@ -330,7 +330,7 @@ struct MonitorConfig { solver: Solvers, /// Submission strategy to use. - #[clap(arg_enum)] + #[clap(arg_enum, default_value = "only-submit-if-leading")] submission_strategy: SubmissionStrategy, } @@ -483,7 +483,7 @@ fn mine_dpos(ext: &mut Ext) -> Result<(), Error> { voters.into_iter().for_each(|(who, stake, targets)| { if targets.is_empty() { println!("target = {:?}", (who, stake, targets)); - return + return; } let share: u128 = (stake as u128) / (targets.len() as u128); for target in targets { @@ -603,7 +603,7 @@ async fn main() { }, _ => { eprintln!("unexpected chain: {:?}", chain); - return + return; }, } log::info!(target: LOG_TARGET, "connected to chain {:?}", chain); diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index f008241e4d0e..7b9f5ce1c5a3 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -21,6 +21,7 @@ use crate::{ SubmissionStrategy, }; use codec::Encode; +use frame_support::{StorageHasher, Twox64Concat}; use jsonrpsee::{ core::{ client::{Subscription, SubscriptionClientT}, @@ -59,17 +60,41 @@ async fn ensure_no_previous_solution< T: EPM::Config + frame_system::Config, B: BlockT, >( - ext: &mut Ext, + client: &WsClient, + at: B::Hash, us: &AccountId, ) -> Result<(), Error> { - use EPM::signed::SignedSubmissions; - ext.execute_with(|| { - if >::get().iter().any(|ss| &ss.who == us) { - Err(Error::AlreadySubmitted) - } else { - Ok(()) + use EPM::signed::{SignedSubmissionOf, SubmissionIndicesOf}; + const MODULE_PREFIX: &[u8] = b"ElectionProviderMultiPhase"; + + let indices_key = storage_value(MODULE_PREFIX, b"SignedSubmissionIndices"); + + let indices: SubmissionIndicesOf = get_storage(client, rpc_params! {indices_key, at}) + .await + .map_err::, _>(Into::into)? + .unwrap_or_default(); + + // TODO(niklasad1): we could fetch the best previous score here if we want. + for (_score, id) in indices { + let key = storage_value_by_key::( + MODULE_PREFIX, + b"SignedSubmissionsMap", + &id.encode(), + ); + + if let Some(submission) = + get_storage::>(client, rpc_params! {key, at}) + .await + .map_err::, _>(Into::into)? + { + log::info!("submission: {:?}", submission); + if &submission.who == us { + return Err(Error::AlreadySubmitted); + } } - }) + } + + Ok(()) } /// Queries the chain for the best solution and checks whether the computed score @@ -202,7 +227,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { } }; - if ensure_no_previous_solution::(&mut ext, &signer.account).await.is_err() { + if ensure_no_previous_solution::(&*client, hash, &signer.account).await.is_err() { log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."); return; } @@ -351,3 +376,27 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { monitor_cmd_for!(polkadot); monitor_cmd_for!(kusama); monitor_cmd_for!(westend); + +fn storage_prefix(m: &[u8], s: &[u8]) -> Vec { + let k1 = sp_core::hashing::twox_128(m); + let k2 = sp_core::hashing::twox_128(s); + let mut key = Vec::with_capacity(k1.len() + k2.len()); + key.extend_from_slice(&k1); + key.extend_from_slice(&k2); + key +} + +/// Get storage value. +fn storage_value(m: &[u8], s: &[u8]) -> StorageKey { + StorageKey(storage_prefix(m, s)) +} + +/// Get storage value at given key. +fn storage_value_by_key(m: &[u8], s: &[u8], encoded_key: &[u8]) -> StorageKey { + let k1 = storage_prefix(m, s); + let k2 = H::hash(encoded_key); + let mut key = Vec::with_capacity(k1.len() + k2.as_ref().len()); + key.extend_from_slice(&k1); + key.extend_from_slice(k2.as_ref()); + StorageKey(key) +} From 32c877a95e48aee5e18b4b73bfed62cc8c91bea6 Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 31 Jan 2022 17:54:38 +0100 Subject: [PATCH 10/27] check ensure_no_previous_solution before remote ext --- utils/staking-miner/src/main.rs | 4 ++-- utils/staking-miner/src/monitor.rs | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 212905d5ff55..9402ce90c744 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -483,7 +483,7 @@ fn mine_dpos(ext: &mut Ext) -> Result<(), Error> { voters.into_iter().for_each(|(who, stake, targets)| { if targets.is_empty() { println!("target = {:?}", (who, stake, targets)); - return; + return } let share: u128 = (stake as u128) / (targets.len() as u128); for target in targets { @@ -603,7 +603,7 @@ async fn main() { }, _ => { eprintln!("unexpected chain: {:?}", chain); - return; + return }, } log::info!(target: LOG_TARGET, "connected to chain {:?}", chain); diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 7b9f5ce1c5a3..a066ae33c48d 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -89,7 +89,7 @@ async fn ensure_no_previous_solution< { log::info!("submission: {:?}", submission); if &submission.who == us { - return Err(Error::AlreadySubmitted); + return Err(Error::AlreadySubmitted) } } } @@ -214,6 +214,11 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { return; } + if ensure_no_previous_solution::(&*client, hash, &signer.account).await.is_err() { + log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."); + return; + } + // grab an externalities without staking, just the election snapshot. let mut ext = match crate::create_election_ext::( shared.uri.clone(), @@ -227,11 +232,6 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { } }; - if ensure_no_previous_solution::(&*client, hash, &signer.account).await.is_err() { - log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."); - return; - } - // mine a solution, and run feasibility check on it as well. let (raw_solution, witness) = match crate::mine_with::(&config.solver, &mut ext, true) { Ok(r) => r, From e87406dce5a13a8ef82d07f7826b8f8e1ba71b51 Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 4 Feb 2022 17:31:41 +0100 Subject: [PATCH 11/27] fix todos --- utils/staking-miner/src/main.rs | 29 ++++++++++++++----- utils/staking-miner/src/monitor.rs | 45 ++++++++++++++---------------- 2 files changed, 43 insertions(+), 31 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 9402ce90c744..155114f6fc31 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -35,6 +35,8 @@ mod prelude; mod rpc_helpers; mod signer; +use std::str::FromStr; + pub(crate) use prelude::*; pub(crate) use signer::get_account_info; @@ -44,7 +46,7 @@ use frame_support::traits::Get; use jsonrpsee::ws_client::{WsClient, WsClientBuilder}; use remote_externalities::{Builder, Mode, OnlineConfig}; use sp_npos_elections::ExtendedBalance; -use sp_runtime::{traits::Block as BlockT, DeserializeOwned}; +use sp_runtime::{traits::Block as BlockT, DeserializeOwned, Perbill}; pub(crate) enum AnyRuntime { Polkadot, @@ -295,17 +297,30 @@ enum Solvers { }, } -#[derive(Debug, Copy, Clone, clap::ArgEnum)] +#[derive(Debug, Copy, Clone)] enum SubmissionStrategy { // Only submit if at the time, we are the best. OnlySubmitIfLeading, // Always submit. AlwaysSubmit, - // TODO(niklasad1): fix Perbill with type in some other way - // // Submit if we are leading, or if the solution that's leading is more that the given `Perbill` // better than us. This helps detect obviously fake solutions and still combat them. - // SubmitIfClaimBetterThan(sp_runtime::Perbill) + SubmitIfClaimBetterThan(Perbill), +} + +impl FromStr for SubmissionStrategy { + type Err = std::num::ParseFloatError; + + fn from_str(s: &str) -> Result { + let res = if s == "only-submit-if-leading" { + Self::OnlySubmitIfLeading + } else if s == "always-submit" { + Self::AlwaysSubmit + } else { + Self::SubmitIfClaimBetterThan(Perbill::from_float(s.parse()?)) + }; + Ok(res) + } } frame_support::parameter_types! { @@ -330,7 +345,7 @@ struct MonitorConfig { solver: Solvers, /// Submission strategy to use. - #[clap(arg_enum, default_value = "only-submit-if-leading")] + #[clap(long, parse(try_from_str), default_value = "only-submit-if-leading")] submission_strategy: SubmissionStrategy, } @@ -629,7 +644,7 @@ async fn main() { log::error!(target: LOG_TARGET, "DryRun error: {:?}", e); }), Command::EmergencySolution(c) => emergency_solution_cmd(shared.clone(), c).await - .map_err(|e| { + .map_err(|e| { log::error!(target: LOG_TARGET, "EmergencySolution error: {:?}", e); }), } diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index a066ae33c48d..66f55390ab9c 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -35,6 +35,9 @@ use sp_core::storage::StorageKey; use sp_runtime::Perbill; use std::sync::Arc; use tokio::sync::mpsc; +use EPM::signed::{SignedSubmissionOf, SubmissionIndicesOf}; + +const EPM_MODULE_PREFIX: &[u8] = b"ElectionProviderMultiPhase"; /// Ensure that now is the signed phase. async fn ensure_signed_phase( @@ -64,20 +67,16 @@ async fn ensure_no_previous_solution< at: B::Hash, us: &AccountId, ) -> Result<(), Error> { - use EPM::signed::{SignedSubmissionOf, SubmissionIndicesOf}; - const MODULE_PREFIX: &[u8] = b"ElectionProviderMultiPhase"; - - let indices_key = storage_value(MODULE_PREFIX, b"SignedSubmissionIndices"); + let indices_key = storage_value(EPM_MODULE_PREFIX, b"SignedSubmissionIndices"); let indices: SubmissionIndicesOf = get_storage(client, rpc_params! {indices_key, at}) .await .map_err::, _>(Into::into)? .unwrap_or_default(); - // TODO(niklasad1): we could fetch the best previous score here if we want. for (_score, id) in indices { let key = storage_value_by_key::( - MODULE_PREFIX, + EPM_MODULE_PREFIX, b"SignedSubmissionsMap", &id.encode(), ); @@ -87,7 +86,6 @@ async fn ensure_no_previous_solution< .await .map_err::, _>(Into::into)? { - log::info!("submission: {:?}", submission); if &submission.who == us { return Err(Error::AlreadySubmitted) } @@ -105,27 +103,26 @@ async fn ensure_no_better_solution( score: sp_npos_elections::ElectionScore, strategy: SubmissionStrategy, ) -> Result<(), Error> { - match strategy { - SubmissionStrategy::AlwaysSubmit => Ok(()), - SubmissionStrategy::OnlySubmitIfLeading => { - let key = StorageKey(EPM::QueuedSolution::::hashed_key().to_vec()); - let best_score = - get_storage::>(client, rpc_params! {key, at}) - .await - .map_err::, _>(Into::into)? - .map(|s| s.score) - .unwrap_or_default(); - if sp_npos_elections::is_score_better(score, best_score, Perbill::zero()) { - Ok(()) - } else { - Err(Error::AlreadyExistSolutionWithBetterScore) - } - }, + let epsilon = match strategy { + SubmissionStrategy::AlwaysSubmit => return Ok(()), + SubmissionStrategy::OnlySubmitIfLeading => Perbill::zero(), + SubmissionStrategy::SubmitIfClaimBetterThan(epsilon) => epsilon, + }; + + let key = StorageKey(EPM::QueuedSolution::::hashed_key().to_vec()); + let best_score = get_storage::>(client, rpc_params! {key, at}) + .await + .map_err::, _>(Into::into)? + .map(|s| s.score) + .unwrap_or_default(); + if sp_npos_elections::is_score_better(score, best_score, epsilon) { + Ok(()) + } else { + Err(Error::AlreadyExistSolutionWithBetterScore) } } macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { - /// The monitor command. pub(crate) async fn []( client: WsClient, From 92de8a0b502f9f381ade0f919e49bebd5da6db93 Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 21 Feb 2022 11:27:53 +0100 Subject: [PATCH 12/27] grumbles: Perbill::from_percent --- utils/staking-miner/src/main.rs | 30 ++++++++++++++++++++---------- utils/staking-miner/src/monitor.rs | 6 +++--- 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 0506ee3b6b8a..9375ef8f958e 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -304,24 +304,34 @@ enum Solvers { #[derive(Debug, Copy, Clone)] enum SubmissionStrategy { // Only submit if at the time, we are the best. - OnlySubmitIfLeading, + IfLeading, // Always submit. - AlwaysSubmit, + Always, // Submit if we are leading, or if the solution that's leading is more that the given `Perbill` // better than us. This helps detect obviously fake solutions and still combat them. - SubmitIfClaimBetterThan(Perbill), + ClaimBetterThan(Perbill), } +/// Custom `impl` to parse `SubmissionStrategy` from CLI. +/// +/// Possible options: +/// * --submission-strategy if-leading: only submit if leading +/// * --submission-strategy always: always submit +/// * --submission-strategy "percent-better ": submit if submission is `n` percent better. (n > 100 has not effect) +/// impl FromStr for SubmissionStrategy { - type Err = std::num::ParseFloatError; + type Err = String; fn from_str(s: &str) -> Result { - let res = if s == "only-submit-if-leading" { - Self::OnlySubmitIfLeading - } else if s == "always-submit" { - Self::AlwaysSubmit + let res = if s == "if-leading" { + Self::IfLeading + } else if s == "always" { + Self::Always + } else if s.starts_with("percent-better ") { + let percent: u32 = s[15..].parse().map_err(|e| format!("{:?}", e))?; + Self::ClaimBetterThan(Perbill::from_percent(percent)) } else { - Self::SubmitIfClaimBetterThan(Perbill::from_float(s.parse()?)) + return Err(s.into()) }; Ok(res) } @@ -349,7 +359,7 @@ struct MonitorConfig { solver: Solvers, /// Submission strategy to use. - #[clap(long, parse(try_from_str), default_value = "only-submit-if-leading")] + #[clap(long, parse(try_from_str), default_value = "if-leading")] submission_strategy: SubmissionStrategy, } diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 841e524ab52d..1a99210b18f9 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -96,9 +96,9 @@ async fn ensure_no_better_solution( strategy: SubmissionStrategy, ) -> Result<(), Error> { let epsilon = match strategy { - SubmissionStrategy::AlwaysSubmit => return Ok(()), - SubmissionStrategy::OnlySubmitIfLeading => Perbill::zero(), - SubmissionStrategy::SubmitIfClaimBetterThan(epsilon) => epsilon, + SubmissionStrategy::Always => return Ok(()), + SubmissionStrategy::IfLeading => Perbill::zero(), + SubmissionStrategy::ClaimBetterThan(epsilon) => epsilon, }; let key = StorageKey(EPM::QueuedSolution::::hashed_key().to_vec()); From 756694a4ce54d7a7f33f0bfb053de8701311699a Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 21 Feb 2022 13:57:31 +0100 Subject: [PATCH 13/27] hacky fix --- utils/staking-miner/src/monitor.rs | 51 ++++++++++++++++++++---------- 1 file changed, 34 insertions(+), 17 deletions(-) diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 1a99210b18f9..c14682aad473 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -28,8 +28,6 @@ use sp_runtime::Perbill; use tokio::sync::mpsc; use EPM::signed::{SignedSubmissionOf, SubmissionIndicesOf}; -const EPM_MODULE_PREFIX: &[u8] = b"ElectionProviderMultiPhase"; - /// Ensure that now is the signed phase. async fn ensure_signed_phase>( rpc: &SharedRpcClient, @@ -50,15 +48,20 @@ async fn ensure_signed_phase>( } /// Ensure that our current `us` have not submitted anything previously. -async fn ensure_no_previous_solution< - T: EPM::Config + frame_system::Config, - B: BlockT, ->( +async fn ensure_no_previous_solution( rpc: &SharedRpcClient, at: Hash, us: &AccountId, -) -> Result<(), Error> { - let indices_key = storage_value(EPM_MODULE_PREFIX, b"SignedSubmissionIndices"); +) -> Result<(), Error> +where + T: EPM::Config + frame_system::Config, + B: BlockT, +{ + let name = + <::PalletInfo as frame_support::traits::PalletInfo>::name::() + .expect("pallet has a name; qed"); + + let indices_key = storage_value(name, b"SignedSubmissionIndices"); let indices: SubmissionIndicesOf = rpc .get_storage_and_decode(&indices_key, Some(at)) @@ -67,8 +70,8 @@ async fn ensure_no_previous_solution< .unwrap_or_default(); for (_score, id) in indices { - let key = storage_value_by_key::( - EPM_MODULE_PREFIX, + let key = storage_value_by_key::( + name, b"SignedSubmissionsMap", &id.encode(), ); @@ -79,7 +82,7 @@ async fn ensure_no_previous_solution< .map_err::, _>(Into::into)? { if &submission.who == us { - return Err(Error::AlreadySubmitted) + return Err(Error::AlreadySubmitted); } } } @@ -358,9 +361,13 @@ monitor_cmd_for!(polkadot); monitor_cmd_for!(kusama); monitor_cmd_for!(westend); -fn storage_prefix(m: &[u8], s: &[u8]) -> Vec { - let k1 = sp_core::hashing::twox_128(m); - let k2 = sp_core::hashing::twox_128(s); +fn storage_prefix(m: M, s: S) -> Vec +where + M: AsRef<[u8]>, + S: AsRef<[u8]>, +{ + let k1 = sp_core::hashing::twox_128(m.as_ref()); + let k2 = sp_core::hashing::twox_128(s.as_ref()); let mut key = Vec::with_capacity(k1.len() + k2.len()); key.extend_from_slice(&k1); key.extend_from_slice(&k2); @@ -368,14 +375,24 @@ fn storage_prefix(m: &[u8], s: &[u8]) -> Vec { } /// Get storage value. -fn storage_value(m: &[u8], s: &[u8]) -> StorageKey { +fn storage_value(m: M, s: S) -> StorageKey +where + M: AsRef<[u8]>, + S: AsRef<[u8]>, +{ StorageKey(storage_prefix(m, s)) } /// Get storage value at given key. -fn storage_value_by_key(m: &[u8], s: &[u8], encoded_key: &[u8]) -> StorageKey { +fn storage_value_by_key(m: M, s: S, encoded_key: E) -> StorageKey +where + H: StorageHasher, + M: AsRef<[u8]>, + S: AsRef<[u8]>, + E: AsRef<[u8]>, +{ let k1 = storage_prefix(m, s); - let k2 = H::hash(encoded_key); + let k2 = H::hash(encoded_key.as_ref()); let mut key = Vec::with_capacity(k1.len() + k2.as_ref().len()); key.extend_from_slice(&k1); key.extend_from_slice(k2.as_ref()); From 5488de1b40de84fd64f30538f5a716d6f89a2dee Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 21 Feb 2022 19:47:30 +0100 Subject: [PATCH 14/27] use modified EPM pallet and various fixes --- utils/staking-miner/src/monitor.rs | 119 +++++++++++++---------------- 1 file changed, 51 insertions(+), 68 deletions(-) diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index c14682aad473..ca9db249e7f2 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -20,13 +20,12 @@ use crate::{ prelude::*, rpc::*, signer::Signer, Error, MonitorConfig, SharedRpcClient, SubmissionStrategy, }; use codec::Encode; -use frame_support::{StorageHasher, Twox64Concat}; use jsonrpsee::core::Error as RpcError; use sc_transaction_pool_api::TransactionStatus; use sp_core::storage::StorageKey; use sp_runtime::Perbill; use tokio::sync::mpsc; -use EPM::signed::{SignedSubmissionOf, SubmissionIndicesOf}; +use EPM::{signed::SubmissionIndicesOf, SignedSubmissionOf}; /// Ensure that now is the signed phase. async fn ensure_signed_phase>( @@ -57,11 +56,7 @@ where T: EPM::Config + frame_system::Config, B: BlockT, { - let name = - <::PalletInfo as frame_support::traits::PalletInfo>::name::() - .expect("pallet has a name; qed"); - - let indices_key = storage_value(name, b"SignedSubmissionIndices"); + let indices_key = StorageKey(EPM::SignedSubmissionIndices::::hashed_key().to_vec()); let indices: SubmissionIndicesOf = rpc .get_storage_and_decode(&indices_key, Some(at)) @@ -69,12 +64,8 @@ where .map_err::, _>(Into::into)? .unwrap_or_default(); - for (_score, id) in indices { - let key = storage_value_by_key::( - name, - b"SignedSubmissionsMap", - &id.encode(), - ); + for (_score, idx) in indices { + let key = StorageKey(EPM::SignedSubmissionsMap::::hashed_key_for(idx)); if let Some(submission) = rpc .get_storage_and_decode::>(&key, Some(at)) @@ -82,7 +73,7 @@ where .map_err::, _>(Into::into)? { if &submission.who == us { - return Err(Error::AlreadySubmitted); + return Err(Error::AlreadySubmitted) } } } @@ -99,11 +90,37 @@ async fn ensure_no_better_solution( strategy: SubmissionStrategy, ) -> Result<(), Error> { let epsilon = match strategy { + // don't care about current scores. SubmissionStrategy::Always => return Ok(()), SubmissionStrategy::IfLeading => Perbill::zero(), SubmissionStrategy::ClaimBetterThan(epsilon) => epsilon, }; + let indices_key = StorageKey(EPM::SignedSubmissionIndices::::hashed_key().to_vec()); + + let indices: SubmissionIndicesOf = rpc + .get_storage_and_decode(&indices_key, Some(at)) + .await + .map_err::, _>(Into::into)? + .unwrap_or_default(); + + // BTreeMap is ordered, take last to get the max score. + if let Some(curr_max_score) = indices.into_iter().last().map(|(s, _)| s) { + if !score.strict_threshold_better(curr_max_score, epsilon) { + return Err(Error::AlreadyExistSolutionWithBetterScore) + } + } + + Ok(()) +} + +/// Queries the chain for the best solution and checks whether the computed score +/// is better than best known. +async fn ensure_no_better_signed_solution( + rpc: &SharedRpcClient, + at: Hash, + score: sp_npos_elections::ElectionScore, +) -> Result<(), Error> { let key = StorageKey(EPM::QueuedSolution::::hashed_key().to_vec()); let best_score = rpc .get_storage_and_decode::>(&key, Some(at)) @@ -111,7 +128,7 @@ async fn ensure_no_better_solution( .map_err::, _>(Into::into)? .map(|s| s.score) .unwrap_or_default(); - if score.strict_threshold_better(best_score, epsilon) { + if score.strict_threshold_better(best_score, Perbill::zero()) { Ok(()) } else { Err(Error::AlreadyExistSolutionWithBetterScore) @@ -192,20 +209,20 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let hash = at.hash(); log::trace!(target: LOG_TARGET, "new event at #{:?} ({:?})", at.number, hash); - // if the runtime version has changed, terminate. - if let Err(err) = crate::check_versions::(&rpc).await { - let _ = tx.send(err.into()); - return; - } - - // we prefer doing this check before fetching anything into a remote-ext. - if ensure_signed_phase::(&rpc, hash).await.is_err() { - log::debug!(target: LOG_TARGET, "phase closed, not interested in this block at all."); - return; - } - - if ensure_no_previous_solution::(&rpc, hash, &signer.account).await.is_err() { - log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."); + // This is just concurrent => on the same thread + if let Err(err) = tokio::try_join!( + ensure_signed_phase::(&rpc, hash), + ensure_no_previous_solution::(&rpc, hash, &signer.account), + crate::check_versions::(&rpc), + ) { + match err { + Error::VersionMismatch => { + let _ = tx.send(Error::VersionMismatch.into()); + } + Error::IncorrectPhase => log::debug!(target: LOG_TARGET, "phase closed, not interested in this block at all."), + Error::AlreadySubmitted => log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."), + err => log::debug!(target: LOG_TARGET, "Error: {:?} when performed initial checks", err), + } return; } @@ -259,7 +276,11 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let extrinsic = ext.execute_with(|| create_uxt(raw_solution, witness, signer.clone(), nonce, tip, era)); let bytes = sp_core::Bytes(extrinsic.encode()); - if ensure_no_better_solution::(&rpc, hash, score, config.submission_strategy).await.is_err() { + // This is just concurrent => on the same thread + if tokio::try_join!( + ensure_no_better_solution::(&rpc, hash, score, config.submission_strategy), + ensure_no_better_signed_solution::(&rpc, hash, score) + ).is_err() { return; } @@ -360,41 +381,3 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { monitor_cmd_for!(polkadot); monitor_cmd_for!(kusama); monitor_cmd_for!(westend); - -fn storage_prefix(m: M, s: S) -> Vec -where - M: AsRef<[u8]>, - S: AsRef<[u8]>, -{ - let k1 = sp_core::hashing::twox_128(m.as_ref()); - let k2 = sp_core::hashing::twox_128(s.as_ref()); - let mut key = Vec::with_capacity(k1.len() + k2.len()); - key.extend_from_slice(&k1); - key.extend_from_slice(&k2); - key -} - -/// Get storage value. -fn storage_value(m: M, s: S) -> StorageKey -where - M: AsRef<[u8]>, - S: AsRef<[u8]>, -{ - StorageKey(storage_prefix(m, s)) -} - -/// Get storage value at given key. -fn storage_value_by_key(m: M, s: S, encoded_key: E) -> StorageKey -where - H: StorageHasher, - M: AsRef<[u8]>, - S: AsRef<[u8]>, - E: AsRef<[u8]>, -{ - let k1 = storage_prefix(m, s); - let k2 = H::hash(encoded_key.as_ref()); - let mut key = Vec::with_capacity(k1.len() + k2.as_ref().len()); - key.extend_from_slice(&k1); - key.extend_from_slice(k2.as_ref()); - StorageKey(key) -} From b3b9a58c9313372c8f21cf247ba0c8528d9953c0 Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 21 Feb 2022 19:49:33 +0100 Subject: [PATCH 15/27] diener update --substrate --branch na-epm-pub --- Cargo.lock | 326 +++++++++--------- Cargo.toml | 2 +- bridges/bin/millau/node/Cargo.toml | 60 ++-- bridges/bin/millau/runtime/Cargo.toml | 66 ++-- bridges/bin/rialto-parachain/node/Cargo.toml | 68 ++-- .../bin/rialto-parachain/runtime/Cargo.toml | 52 +-- bridges/bin/rialto/node/Cargo.toml | 94 ++--- bridges/bin/rialto/runtime/Cargo.toml | 70 ++-- bridges/bin/runtime-common/Cargo.toml | 14 +- bridges/fuzz/storage-proof/Cargo.toml | 8 +- bridges/modules/dispatch/Cargo.toml | 12 +- bridges/modules/grandpa/Cargo.toml | 18 +- bridges/modules/messages/Cargo.toml | 16 +- .../modules/shift-session-manager/Cargo.toml | 14 +- bridges/modules/token-swap/Cargo.toml | 16 +- bridges/primitives/chain-kusama/Cargo.toml | 8 +- bridges/primitives/chain-millau/Cargo.toml | 16 +- bridges/primitives/chain-polkadot/Cargo.toml | 8 +- .../chain-rialto-parachain/Cargo.toml | 12 +- bridges/primitives/chain-rialto/Cargo.toml | 12 +- bridges/primitives/chain-rococo/Cargo.toml | 10 +- bridges/primitives/chain-westend/Cargo.toml | 10 +- bridges/primitives/chain-wococo/Cargo.toml | 6 +- bridges/primitives/header-chain/Cargo.toml | 10 +- .../primitives/message-dispatch/Cargo.toml | 4 +- bridges/primitives/messages/Cargo.toml | 6 +- bridges/primitives/polkadot-core/Cargo.toml | 14 +- bridges/primitives/runtime/Cargo.toml | 14 +- bridges/primitives/test-utils/Cargo.toml | 8 +- bridges/primitives/token-swap/Cargo.toml | 6 +- bridges/relays/bin-substrate/Cargo.toml | 14 +- bridges/relays/client-kusama/Cargo.toml | 6 +- bridges/relays/client-millau/Cargo.toml | 10 +- bridges/relays/client-polkadot/Cargo.toml | 6 +- .../relays/client-rialto-parachain/Cargo.toml | 6 +- bridges/relays/client-rialto/Cargo.toml | 10 +- bridges/relays/client-rococo/Cargo.toml | 6 +- bridges/relays/client-substrate/Cargo.toml | 28 +- bridges/relays/client-westend/Cargo.toml | 4 +- bridges/relays/client-wococo/Cargo.toml | 6 +- bridges/relays/lib-substrate-relay/Cargo.toml | 8 +- bridges/relays/messages/Cargo.toml | 2 +- bridges/relays/utils/Cargo.toml | 2 +- cli/Cargo.toml | 16 +- core-primitives/Cargo.toml | 6 +- erasure-coding/Cargo.toml | 4 +- node/client/Cargo.toml | 50 +-- node/collation-generation/Cargo.toml | 4 +- node/core/approval-voting/Cargo.toml | 18 +- node/core/av-store/Cargo.toml | 4 +- node/core/backing/Cargo.toml | 12 +- node/core/bitfield-signing/Cargo.toml | 2 +- node/core/candidate-validation/Cargo.toml | 6 +- node/core/chain-api/Cargo.toml | 8 +- node/core/chain-selection/Cargo.toml | 2 +- node/core/dispute-coordinator/Cargo.toml | 8 +- node/core/parachains-inherent/Cargo.toml | 6 +- node/core/provisioner/Cargo.toml | 4 +- node/core/pvf-checker/Cargo.toml | 12 +- node/core/pvf/Cargo.toml | 18 +- node/core/runtime-api/Cargo.toml | 12 +- node/jaeger/Cargo.toml | 4 +- node/malus/Cargo.toml | 4 +- node/metrics/Cargo.toml | 16 +- node/network/approval-distribution/Cargo.toml | 2 +- .../availability-distribution/Cargo.toml | 12 +- node/network/availability-recovery/Cargo.toml | 10 +- node/network/bitfield-distribution/Cargo.toml | 6 +- node/network/bridge/Cargo.toml | 8 +- node/network/collator-protocol/Cargo.toml | 12 +- node/network/dispute-distribution/Cargo.toml | 12 +- node/network/gossip-support/Cargo.toml | 14 +- node/network/protocol/Cargo.toml | 4 +- .../network/statement-distribution/Cargo.toml | 18 +- node/overseer/Cargo.toml | 6 +- node/primitives/Cargo.toml | 12 +- node/service/Cargo.toml | 94 ++--- node/subsystem-test-helpers/Cargo.toml | 10 +- node/subsystem-types/Cargo.toml | 4 +- node/subsystem-util/Cargo.toml | 6 +- node/test/client/Cargo.toml | 28 +- node/test/service/Cargo.toml | 62 ++-- parachain/Cargo.toml | 8 +- parachain/test-parachains/Cargo.toml | 2 +- parachain/test-parachains/adder/Cargo.toml | 6 +- .../test-parachains/adder/collator/Cargo.toml | 12 +- parachain/test-parachains/halt/Cargo.toml | 2 +- primitives/Cargo.toml | 30 +- primitives/test-helpers/Cargo.toml | 6 +- rpc/Cargo.toml | 44 +-- runtime/common/Cargo.toml | 60 ++-- runtime/common/slot_range_helper/Cargo.toml | 4 +- runtime/kusama/Cargo.toml | 130 +++---- runtime/kusama/constants/Cargo.toml | 4 +- runtime/metrics/Cargo.toml | 4 +- runtime/parachains/Cargo.toml | 50 +-- runtime/polkadot/Cargo.toml | 122 +++---- runtime/polkadot/constants/Cargo.toml | 4 +- runtime/rococo/Cargo.toml | 88 ++--- runtime/rococo/constants/Cargo.toml | 4 +- runtime/test-runtime/Cargo.toml | 80 ++--- runtime/test-runtime/constants/Cargo.toml | 4 +- runtime/westend/Cargo.toml | 124 +++---- runtime/westend/constants/Cargo.toml | 4 +- statement-table/Cargo.toml | 2 +- utils/generate-bags/Cargo.toml | 4 +- utils/remote-ext-tests/bags-list/Cargo.toml | 8 +- utils/staking-miner/Cargo.toml | 34 +- xcm/pallet-xcm-benchmarks/Cargo.toml | 20 +- xcm/pallet-xcm/Cargo.toml | 14 +- xcm/xcm-builder/Cargo.toml | 18 +- xcm/xcm-executor/Cargo.toml | 14 +- xcm/xcm-executor/integration-tests/Cargo.toml | 14 +- xcm/xcm-simulator/Cargo.toml | 6 +- xcm/xcm-simulator/example/Cargo.toml | 14 +- xcm/xcm-simulator/fuzzer/Cargo.toml | 14 +- 116 files changed, 1289 insertions(+), 1289 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0dc2f9de533a..7c545b9972cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -439,7 +439,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "beefy-primitives", "fnv", @@ -468,7 +468,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -491,12 +491,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "scale-info", @@ -1889,7 +1889,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", ] @@ -1907,7 +1907,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -1929,7 +1929,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "Inflector", "chrono", @@ -1956,7 +1956,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -1970,7 +1970,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "bitflags", "frame-metadata", @@ -2027,7 +2027,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2039,7 +2039,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.2", @@ -2051,7 +2051,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "proc-macro2", "quote", @@ -2061,7 +2061,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2084,7 +2084,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -2095,7 +2095,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "log", @@ -2112,7 +2112,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -2127,7 +2127,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "sp-api", @@ -2136,7 +2136,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "sp-api", @@ -2332,7 +2332,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "chrono", "frame-election-provider-support", @@ -4752,7 +4752,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -4766,7 +4766,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -4782,7 +4782,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -4797,7 +4797,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -4821,7 +4821,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4841,7 +4841,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4861,7 +4861,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -4876,7 +4876,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "beefy-primitives", "frame-support", @@ -4892,7 +4892,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4917,7 +4917,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5001,7 +5001,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5018,7 +5018,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5034,7 +5034,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5057,7 +5057,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5075,7 +5075,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5090,7 +5090,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5113,7 +5113,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5129,7 +5129,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5149,7 +5149,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5166,7 +5166,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5183,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -5217,7 +5217,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5234,7 +5234,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5249,7 +5249,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -5263,7 +5263,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -5280,7 +5280,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5303,7 +5303,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5319,7 +5319,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5334,7 +5334,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -5348,7 +5348,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5364,7 +5364,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -5385,7 +5385,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5401,7 +5401,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -5415,7 +5415,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5438,7 +5438,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -5449,7 +5449,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "log", "sp-arithmetic", @@ -5458,7 +5458,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -5472,7 +5472,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5490,7 +5490,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5509,7 +5509,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-support", "frame-system", @@ -5526,7 +5526,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5543,7 +5543,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5554,7 +5554,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5571,7 +5571,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -5587,7 +5587,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-benchmarking", "frame-support", @@ -7990,7 +7990,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "env_logger 0.9.0", "jsonrpsee 0.8.0", @@ -8337,7 +8337,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "log", "sp-core", @@ -8348,7 +8348,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "futures 0.3.21", @@ -8375,7 +8375,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8398,7 +8398,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8414,7 +8414,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8431,7 +8431,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -8442,7 +8442,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "chrono", "clap", @@ -8480,7 +8480,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "fnv", "futures 0.3.21", @@ -8508,7 +8508,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "hash-db", "kvdb", @@ -8533,7 +8533,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "futures 0.3.21", @@ -8557,7 +8557,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "fork-tree", @@ -8600,7 +8600,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -8624,7 +8624,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8637,7 +8637,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "futures 0.3.21", @@ -8662,7 +8662,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "sc-client-api", "sp-authorship", @@ -8673,11 +8673,10 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "lazy_static", "libsecp256k1", - "log", "lru 0.6.6", "parity-scale-codec", "parking_lot 0.11.2", @@ -8695,13 +8694,14 @@ dependencies = [ "sp-trie", "sp-version", "sp-wasm-interface", + "tracing", "wasmi", ] [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "environmental", "parity-scale-codec", @@ -8718,7 +8718,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "log", "parity-scale-codec", @@ -8734,7 +8734,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8752,7 +8752,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "ahash", "async-trait", @@ -8791,7 +8791,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -8815,7 +8815,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "ansi_term", "futures 0.3.21", @@ -8832,7 +8832,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "hex", @@ -8847,7 +8847,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-std", "async-trait", @@ -8897,7 +8897,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "ahash", "futures 0.3.21", @@ -8914,7 +8914,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "bytes 1.1.0", "fnv", @@ -8942,7 +8942,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "libp2p", @@ -8955,7 +8955,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8964,7 +8964,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "hash-db", @@ -8995,7 +8995,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9020,7 +9020,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "directories", @@ -9101,7 +9101,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "log", "parity-scale-codec", @@ -9115,7 +9115,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -9136,7 +9136,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "chrono", "futures 0.3.21", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "ansi_term", "atty", @@ -9185,7 +9185,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -9196,7 +9196,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9223,7 +9223,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "log", @@ -9236,7 +9236,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9685,7 +9685,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "hash-db", "log", @@ -9702,7 +9702,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "blake2 0.10.2", "proc-macro-crate 1.1.2", @@ -9714,7 +9714,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "scale-info", @@ -9727,7 +9727,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "integer-sqrt", "num-traits", @@ -9742,7 +9742,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "scale-info", @@ -9755,7 +9755,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "parity-scale-codec", @@ -9767,7 +9767,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "sp-api", @@ -9779,7 +9779,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "log", @@ -9797,7 +9797,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "futures 0.3.21", @@ -9816,7 +9816,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "merlin", @@ -9839,7 +9839,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "scale-info", @@ -9851,7 +9851,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -9863,7 +9863,7 @@ dependencies = [ [[package]] name = "sp-core" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "base58", "bitflags", @@ -9908,7 +9908,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "blake2 0.10.2", "byteorder", @@ -9922,7 +9922,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "proc-macro2", "quote", @@ -9933,7 +9933,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "kvdb", "parking_lot 0.11.2", @@ -9942,7 +9942,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "proc-macro2", "quote", @@ -9952,7 +9952,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "environmental", "parity-scale-codec", @@ -9963,7 +9963,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "finality-grandpa", "log", @@ -9981,7 +9981,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9995,7 +9995,7 @@ dependencies = [ [[package]] name = "sp-io" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "hash-db", @@ -10019,7 +10019,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "lazy_static", "sp-core", @@ -10030,7 +10030,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "futures 0.3.21", @@ -10047,7 +10047,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "thiserror", "zstd", @@ -10056,7 +10056,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "scale-info", @@ -10071,7 +10071,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -10082,7 +10082,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "sp-api", "sp-core", @@ -10092,7 +10092,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "backtrace", "lazy_static", @@ -10102,7 +10102,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "rustc-hash", "serde", @@ -10112,7 +10112,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "either", "hash256-std-hasher", @@ -10134,7 +10134,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10151,7 +10151,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "Inflector", "proc-macro-crate 1.1.2", @@ -10163,7 +10163,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "serde", "serde_json", @@ -10172,7 +10172,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "scale-info", @@ -10186,7 +10186,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "scale-info", @@ -10197,7 +10197,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "hash-db", "log", @@ -10220,12 +10220,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" [[package]] name = "sp-storage" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10238,7 +10238,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "log", "sp-core", @@ -10251,7 +10251,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "futures-timer", @@ -10267,7 +10267,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "sp-std", @@ -10279,7 +10279,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "sp-api", "sp-runtime", @@ -10288,7 +10288,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "log", @@ -10304,7 +10304,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "hash-db", "memory-db", @@ -10319,7 +10319,7 @@ dependencies = [ [[package]] name = "sp-version" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10336,7 +10336,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10347,7 +10347,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "impl-trait-for-tuples", "log", @@ -10515,7 +10515,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "platforms", ] @@ -10523,7 +10523,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -10545,7 +10545,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-std", "futures-util", @@ -10559,7 +10559,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "async-trait", "futures 0.3.21", @@ -10585,7 +10585,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -10595,7 +10595,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -10606,7 +10606,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "ansi_term", "build-helper", @@ -11201,7 +11201,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" dependencies = [ "clap", "jsonrpsee 0.4.1", diff --git a/Cargo.toml b/Cargo.toml index 885dc830204b..4064a0e833b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ assert_cmd = "2.0.4" nix = "0.23.1" tempfile = "3.2.0" tokio = "1.16.1" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-core-primitives = { path = "core-primitives" } [workspace] diff --git a/bridges/bin/millau/node/Cargo.toml b/bridges/bin/millau/node/Cargo.toml index c4438d0cef3e..246db722513d 100644 --- a/bridges/bin/millau/node/Cargo.toml +++ b/bridges/bin/millau/node/Cargo.toml @@ -23,38 +23,38 @@ pallet-bridge-messages = { path = "../../../modules/messages" } # Substrate Dependencies -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -node-inspect = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +node-inspect = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "na-epm-pub" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = [] diff --git a/bridges/bin/millau/runtime/Cargo.toml b/bridges/bin/millau/runtime/Cargo.toml index 13195b95194b..c1966aaffa0a 100644 --- a/bridges/bin/millau/runtime/Cargo.toml +++ b/bridges/bin/millau/runtime/Cargo.toml @@ -30,41 +30,41 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/bin/rialto-parachain/node/Cargo.toml b/bridges/bin/rialto-parachain/node/Cargo.toml index 8adc998e47ee..72a52e5b4f95 100644 --- a/bridges/bin/rialto-parachain/node/Cargo.toml +++ b/bridges/bin/rialto-parachain/node/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [[bin]] name = 'rialto-parachain-collator' @@ -32,44 +32,44 @@ jsonrpc-core = '18.0' rialto-parachain-runtime = { path = '../runtime' } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } ## Substrate Client Dependencies -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", features = ['wasmtime'] } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", features = ['wasmtime'] , branch = "na-epm-pub" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } ## Substrate Primitive Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } # Cumulus dependencies cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "master" } @@ -86,4 +86,4 @@ polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "maste polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } \ No newline at end of file +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } diff --git a/bridges/bin/rialto-parachain/runtime/Cargo.toml b/bridges/bin/rialto-parachain/runtime/Cargo.toml index 20ce70aba8f6..f037d5d50453 100644 --- a/bridges/bin/rialto-parachain/runtime/Cargo.toml +++ b/bridges/bin/rialto-parachain/runtime/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dependencies] codec = { package = 'parity-scale-codec', version = '2.0.0', default-features = false, features = ['derive']} @@ -22,35 +22,35 @@ bp-rialto-parachain = { path = "../../../primitives/chain-rialto-parachain", def # Substrate Dependencies ## Substrate Primitive Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } ## Substrate FRAME Dependencies -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } ## Substrate Pallet Dependencies -pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } # Cumulus Dependencies cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "master", default-features = false } diff --git a/bridges/bin/rialto/node/Cargo.toml b/bridges/bin/rialto/node/Cargo.toml index 2795f2eecaec..38f08cf17bc4 100644 --- a/bridges/bin/rialto/node/Cargo.toml +++ b/bridges/bin/rialto/node/Cargo.toml @@ -28,52 +28,52 @@ rialto-runtime = { path = "../runtime" } # Substrate Dependencies -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -node-inspect = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +node-inspect = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "na-epm-pub" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } #sc-finality-grandpa-warp-sync = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } # Polkadot Dependencies @@ -110,8 +110,8 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", polkadot-statement-distribution = { git = "https://github.com/paritytech/polkadot", branch = "master" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = [] diff --git a/bridges/bin/rialto/runtime/Cargo.toml b/bridges/bin/rialto/runtime/Cargo.toml index 8298cdfbfbe8..03cd6b7fdaa4 100644 --- a/bridges/bin/rialto/runtime/Cargo.toml +++ b/bridges/bin/rialto/runtime/Cargo.toml @@ -31,40 +31,40 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } # Polkadot (parachain) Dependencies @@ -76,7 +76,7 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", libsecp256k1 = { version = "0.7", features = ["hmac"] } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/bin/runtime-common/Cargo.toml b/bridges/bin/runtime-common/Cargo.toml index 4e693f05451c..99e00bfe2deb 100644 --- a/bridges/bin/runtime-common/Cargo.toml +++ b/bridges/bin/runtime-common/Cargo.toml @@ -24,13 +24,13 @@ pallet-bridge-messages = { path = "../../modules/messages", default-features = f # Substrate dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/fuzz/storage-proof/Cargo.toml b/bridges/fuzz/storage-proof/Cargo.toml index c4da57b255c8..6a244896279c 100644 --- a/bridges/fuzz/storage-proof/Cargo.toml +++ b/bridges/fuzz/storage-proof/Cargo.toml @@ -18,7 +18,7 @@ bp-runtime = { path = "../../primitives/runtime" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/modules/dispatch/Cargo.toml b/bridges/modules/dispatch/Cargo.toml index 1d91d0a05094..ee4d14a86458 100644 --- a/bridges/modules/dispatch/Cargo.toml +++ b/bridges/modules/dispatch/Cargo.toml @@ -18,14 +18,14 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/modules/grandpa/Cargo.toml b/bridges/modules/grandpa/Cargo.toml index 01195abe89e1..9f9fe139d129 100644 --- a/bridges/modules/grandpa/Cargo.toml +++ b/bridges/modules/grandpa/Cargo.toml @@ -22,20 +22,20 @@ bp-header-chain = { path = "../../primitives/header-chain", default-features = f # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } # Optional Benchmarking Dependencies bp-test-utils = { path = "../../primitives/test-utils", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/modules/messages/Cargo.toml b/bridges/modules/messages/Cargo.toml index b48bdc5c0ffd..1fc8b09f73c5 100644 --- a/bridges/modules/messages/Cargo.toml +++ b/bridges/modules/messages/Cargo.toml @@ -22,18 +22,18 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [dev-dependencies] hex = "0.4" hex-literal = "0.3" -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/modules/shift-session-manager/Cargo.toml b/bridges/modules/shift-session-manager/Cargo.toml index 9e3e15fddf89..8569ae4d1496 100644 --- a/bridges/modules/shift-session-manager/Cargo.toml +++ b/bridges/modules/shift-session-manager/Cargo.toml @@ -12,15 +12,15 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/modules/token-swap/Cargo.toml b/bridges/modules/token-swap/Cargo.toml index a6103f688c42..ba8fa07c8591 100644 --- a/bridges/modules/token-swap/Cargo.toml +++ b/bridges/modules/token-swap/Cargo.toml @@ -23,16 +23,16 @@ pallet-bridge-messages = { path = "../messages", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/chain-kusama/Cargo.toml b/bridges/primitives/chain-kusama/Cargo.toml index 6ff860357c7c..624e369e4bb3 100644 --- a/bridges/primitives/chain-kusama/Cargo.toml +++ b/bridges/primitives/chain-kusama/Cargo.toml @@ -17,10 +17,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/chain-millau/Cargo.toml b/bridges/primitives/chain-millau/Cargo.toml index f1e17fe96f5a..27c3b196b523 100644 --- a/bridges/primitives/chain-millau/Cargo.toml +++ b/bridges/primitives/chain-millau/Cargo.toml @@ -22,14 +22,14 @@ serde = { version = "1.0", optional = true, features = ["derive"] } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/chain-polkadot/Cargo.toml b/bridges/primitives/chain-polkadot/Cargo.toml index 917c7f974783..0e60865e34c4 100644 --- a/bridges/primitives/chain-polkadot/Cargo.toml +++ b/bridges/primitives/chain-polkadot/Cargo.toml @@ -17,10 +17,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto-parachain/Cargo.toml b/bridges/primitives/chain-rialto-parachain/Cargo.toml index 034188631b8c..1bfdc3c3feda 100644 --- a/bridges/primitives/chain-rialto-parachain/Cargo.toml +++ b/bridges/primitives/chain-rialto-parachain/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto/Cargo.toml b/bridges/primitives/chain-rialto/Cargo.toml index d16ac59484fb..9bb3823c6b65 100644 --- a/bridges/primitives/chain-rialto/Cargo.toml +++ b/bridges/primitives/chain-rialto/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/chain-rococo/Cargo.toml b/bridges/primitives/chain-rococo/Cargo.toml index 6e1189b05f36..b4999c890f06 100644 --- a/bridges/primitives/chain-rococo/Cargo.toml +++ b/bridges/primitives/chain-rococo/Cargo.toml @@ -16,11 +16,11 @@ bp-polkadot-core = { path = "../polkadot-core", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/chain-westend/Cargo.toml b/bridges/primitives/chain-westend/Cargo.toml index 4fd1652744ed..cecf135fb553 100644 --- a/bridges/primitives/chain-westend/Cargo.toml +++ b/bridges/primitives/chain-westend/Cargo.toml @@ -20,11 +20,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/chain-wococo/Cargo.toml b/bridges/primitives/chain-wococo/Cargo.toml index d99783695ad3..46d5037d0937 100644 --- a/bridges/primitives/chain-wococo/Cargo.toml +++ b/bridges/primitives/chain-wococo/Cargo.toml @@ -16,9 +16,9 @@ bp-rococo = { path = "../chain-rococo", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/header-chain/Cargo.toml b/bridges/primitives/header-chain/Cargo.toml index 76b710247f74..456c10ed9fec 100644 --- a/bridges/primitives/header-chain/Cargo.toml +++ b/bridges/primitives/header-chain/Cargo.toml @@ -14,11 +14,11 @@ serde = { version = "1.0", optional = true } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [dev-dependencies] assert_matches = "1.5" diff --git a/bridges/primitives/message-dispatch/Cargo.toml b/bridges/primitives/message-dispatch/Cargo.toml index 9897b3199781..8b2822430819 100644 --- a/bridges/primitives/message-dispatch/Cargo.toml +++ b/bridges/primitives/message-dispatch/Cargo.toml @@ -13,8 +13,8 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/messages/Cargo.toml b/bridges/primitives/messages/Cargo.toml index 31ec46222cd8..e2e038c1853f 100644 --- a/bridges/primitives/messages/Cargo.toml +++ b/bridges/primitives/messages/Cargo.toml @@ -19,9 +19,9 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/polkadot-core/Cargo.toml b/bridges/primitives/polkadot-core/Cargo.toml index f05edd0d91ba..b59c0ada7ed4 100644 --- a/bridges/primitives/polkadot-core/Cargo.toml +++ b/bridges/primitives/polkadot-core/Cargo.toml @@ -17,13 +17,13 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [dev-dependencies] hex = "0.4" diff --git a/bridges/primitives/runtime/Cargo.toml b/bridges/primitives/runtime/Cargo.toml index 7cc165fb4e9c..04bae5b7f46a 100644 --- a/bridges/primitives/runtime/Cargo.toml +++ b/bridges/primitives/runtime/Cargo.toml @@ -14,13 +14,13 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [dev-dependencies] hex-literal = "0.3" diff --git a/bridges/primitives/test-utils/Cargo.toml b/bridges/primitives/test-utils/Cargo.toml index 95121c60993a..322d8b803a82 100644 --- a/bridges/primitives/test-utils/Cargo.toml +++ b/bridges/primitives/test-utils/Cargo.toml @@ -10,10 +10,10 @@ bp-header-chain = { path = "../header-chain", default-features = false } codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false } ed25519-dalek = { version = "1.0", default-features = false, features = ["u64_backend"] } finality-grandpa = { version = "0.14.4", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/primitives/token-swap/Cargo.toml b/bridges/primitives/token-swap/Cargo.toml index 4b16c3567ea6..a951e01535c8 100644 --- a/bridges/primitives/token-swap/Cargo.toml +++ b/bridges/primitives/token-swap/Cargo.toml @@ -12,9 +12,9 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/bridges/relays/bin-substrate/Cargo.toml b/bridges/relays/bin-substrate/Cargo.toml index a28c61262f40..98ba9f8490f7 100644 --- a/bridges/relays/bin-substrate/Cargo.toml +++ b/bridges/relays/bin-substrate/Cargo.toml @@ -57,12 +57,12 @@ substrate-relay-helper = { path = "../lib-substrate-relay" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } # Polkadot Dependencies @@ -74,6 +74,6 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", [dev-dependencies] hex-literal = "0.3" pallet-bridge-grandpa = { path = "../../modules/grandpa" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } tempfile = "3.2" finality-grandpa = { version = "0.14.0" } diff --git a/bridges/relays/client-kusama/Cargo.toml b/bridges/relays/client-kusama/Cargo.toml index a48d82f641b7..93900e3e2804 100644 --- a/bridges/relays/client-kusama/Cargo.toml +++ b/bridges/relays/client-kusama/Cargo.toml @@ -25,6 +25,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/relays/client-millau/Cargo.toml b/bridges/relays/client-millau/Cargo.toml index 49d9dade154c..f85a3fced4a1 100644 --- a/bridges/relays/client-millau/Cargo.toml +++ b/bridges/relays/client-millau/Cargo.toml @@ -17,8 +17,8 @@ millau-runtime = { path = "../../bin/millau/runtime" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/relays/client-polkadot/Cargo.toml b/bridges/relays/client-polkadot/Cargo.toml index ff7748657941..9d7e4d3858b6 100644 --- a/bridges/relays/client-polkadot/Cargo.toml +++ b/bridges/relays/client-polkadot/Cargo.toml @@ -25,6 +25,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/relays/client-rialto-parachain/Cargo.toml b/bridges/relays/client-rialto-parachain/Cargo.toml index e4518c687765..92a546d974fc 100644 --- a/bridges/relays/client-rialto-parachain/Cargo.toml +++ b/bridges/relays/client-rialto-parachain/Cargo.toml @@ -16,6 +16,6 @@ rialto-parachain-runtime = { path = "../../bin/rialto-parachain/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/relays/client-rialto/Cargo.toml b/bridges/relays/client-rialto/Cargo.toml index 3132b26d27fc..f8f733e78afa 100644 --- a/bridges/relays/client-rialto/Cargo.toml +++ b/bridges/relays/client-rialto/Cargo.toml @@ -17,8 +17,8 @@ rialto-runtime = { path = "../../bin/rialto/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/relays/client-rococo/Cargo.toml b/bridges/relays/client-rococo/Cargo.toml index 28e97d3bf0ce..1786d9dec67e 100644 --- a/bridges/relays/client-rococo/Cargo.toml +++ b/bridges/relays/client-rococo/Cargo.toml @@ -26,6 +26,6 @@ pallet-bridge-messages = { path = "../../modules/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/relays/client-substrate/Cargo.toml b/bridges/relays/client-substrate/Cargo.toml index 2eb07fdcde46..96629dd88337 100644 --- a/bridges/relays/client-substrate/Cargo.toml +++ b/bridges/relays/client-substrate/Cargo.toml @@ -26,20 +26,20 @@ relay-utils = { path = "../utils" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } #[dev-dependencies] futures = "0.3.7" diff --git a/bridges/relays/client-westend/Cargo.toml b/bridges/relays/client-westend/Cargo.toml index 24b05c4f4836..60f1a16ad8cc 100644 --- a/bridges/relays/client-westend/Cargo.toml +++ b/bridges/relays/client-westend/Cargo.toml @@ -16,5 +16,5 @@ bp-westend = { path = "../../primitives/chain-westend" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/relays/client-wococo/Cargo.toml b/bridges/relays/client-wococo/Cargo.toml index ea46c3c898bb..a852c3698383 100644 --- a/bridges/relays/client-wococo/Cargo.toml +++ b/bridges/relays/client-wococo/Cargo.toml @@ -24,6 +24,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } pallet-bridge-messages = { path = "../../modules/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/relays/lib-substrate-relay/Cargo.toml b/bridges/relays/lib-substrate-relay/Cargo.toml index 5bee10856daa..c47e28e0bc93 100644 --- a/bridges/relays/lib-substrate-relay/Cargo.toml +++ b/bridges/relays/lib-substrate-relay/Cargo.toml @@ -34,10 +34,10 @@ bp-messages = { path = "../../primitives/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] bp-millau = { path = "../../primitives/chain-millau" } diff --git a/bridges/relays/messages/Cargo.toml b/bridges/relays/messages/Cargo.toml index b11f00b957a4..917c1627adff 100644 --- a/bridges/relays/messages/Cargo.toml +++ b/bridges/relays/messages/Cargo.toml @@ -20,4 +20,4 @@ bp-messages = { path = "../../primitives/messages" } bp-runtime = { path = "../../primitives/runtime" } relay-utils = { path = "../utils" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/bridges/relays/utils/Cargo.toml b/bridges/relays/utils/Cargo.toml index a08c3b3d688d..d2cf238e8629 100644 --- a/bridges/relays/utils/Cargo.toml +++ b/bridges/relays/utils/Cargo.toml @@ -28,4 +28,4 @@ bp-runtime = { path = "../../primitives/runtime" } # Substrate dependencies -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 231a5f4f5363..0988f679bc1e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -23,20 +23,20 @@ service = { package = "polkadot-service", path = "../node/service", default-feat polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true } polkadot-performance-test = { path = "../node/test/performance-test", optional = true } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } +sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } polkadot-node-metrics = { path = "../node/metrics" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } # this crate is used only to enable `trie-memory-tracker` feature # see https://github.com/paritytech/substrate/pull/6745 -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["wasmtime", "db", "cli", "full-node", "trie-memory-tracker", "polkadot-native"] diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index bb7c809c65fd..82879ec225a7 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -5,9 +5,9 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } scale-info = { version = "1.0", default-features = false, features = ["derive"] } parity-scale-codec = { version = "2.3.1", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.10.0", default-features = false, optional = true } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index cd5853df5033..cadd39c32782 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -9,6 +9,6 @@ polkadot-primitives = { path = "../primitives" } polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" } novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["std", "derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } thiserror = "1.0.30" diff --git a/node/client/Cargo.toml b/node/client/Cargo.toml index 3ebd65de8ab1..1adda724569c 100644 --- a/node/client/Cargo.toml +++ b/node/client/Cargo.toml @@ -5,31 +5,31 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } - -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } - -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } - -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } - -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } + +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } + +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } + +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } + +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } # Polkadot Runtimes polkadot-runtime = { path = "../../runtime/polkadot", optional = true } diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index 09cc647e441c..9d6cb8fbc0fb 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -12,8 +12,8 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } thiserror = "1.0.30" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["bit-vec", "derive"] } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index a328dec18d50..fb127321f445 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -23,19 +23,19 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [dev-dependencies] parking_lot = "0.12.0" rand_core = "0.5.1" # should match schnorrkel -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" kvdb-memorydb = "0.10.0" diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index 4c79fc9fcff5..c335e36da688 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -26,9 +26,9 @@ env_logger = "0.9.0" assert_matches = "1.4.0" kvdb-memorydb = "0.10.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } parking_lot = "0.12.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index 0bc7ff04c1c3..5f75e9369c67 100644 --- a/node/core/backing/Cargo.toml +++ b/node/core/backing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } @@ -18,11 +18,11 @@ tracing = "0.1.31" thiserror = "1.0.30" [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index 60501a3137a7..ef9a29146784 100644 --- a/node/core/bitfield-signing/Cargo.toml +++ b/node/core/bitfield-signing/Cargo.toml @@ -10,7 +10,7 @@ tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } wasm-timer = "0.2.5" thiserror = "1.0.30" diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index ab0fbccf1268..01f8963aeba9 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -9,7 +9,7 @@ async-trait = "0.1.52" futures = "0.3.21" tracing = "0.1.31" -sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["bit-vec", "derive"] } polkadot-primitives = { path = "../../../primitives" } @@ -22,9 +22,9 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-core-pvf = { path = "../pvf" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index ecac94abcb46..6fe7a39f06ab 100644 --- a/node/core/chain-api/Cargo.toml +++ b/node/core/chain-api/Cargo.toml @@ -7,12 +7,12 @@ edition = "2018" [dependencies] futures = "0.3.21" tracing = "0.1.31" -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] futures = { version = "0.3.21", features = ["thread-pool"] } @@ -20,4 +20,4 @@ maplit = "1.0.2" parity-scale-codec = "2.3.1" polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/node/core/chain-selection/Cargo.toml b/node/core/chain-selection/Cargo.toml index 38544cf0574c..d94fd7a55c1a 100644 --- a/node/core/chain-selection/Cargo.toml +++ b/node/core/chain-selection/Cargo.toml @@ -19,7 +19,7 @@ parity-scale-codec = "2" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } parking_lot = "0.12" assert_matches = "1" kvdb-memorydb = "0.10.0" diff --git a/node/core/dispute-coordinator/Cargo.toml b/node/core/dispute-coordinator/Cargo.toml index 686441352bbe..9b4af76c0b8e 100644 --- a/node/core/dispute-coordinator/Cargo.toml +++ b/node/core/dispute-coordinator/Cargo.toml @@ -17,14 +17,14 @@ polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] kvdb-memorydb = "0.10.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } assert_matches = "1.4.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index a050d4a6974e..fa0abf5b4e77 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -12,6 +12,6 @@ thiserror = "1.0.30" async-trait = "0.1.52" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-primitives = { path = "../../../primitives" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index 1fbe9f83bef8..9980c1ffe914 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -17,7 +17,7 @@ futures-timer = "3.0.2" rand = "0.8.5" [dev-dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/pvf-checker/Cargo.toml b/node/core/pvf-checker/Cargo.toml index efb3b1d2ac0a..8a74b4909d10 100644 --- a/node/core/pvf-checker/Cargo.toml +++ b/node/core/pvf-checker/Cargo.toml @@ -15,14 +15,14 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-overseer = { path = "../../overseer" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers"} test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures-timer = "3.0.2" diff --git a/node/core/pvf/Cargo.toml b/node/core/pvf/Cargo.toml index ee486b3c66dd..606693d755c0 100644 --- a/node/core/pvf/Cargo.toml +++ b/node/core/pvf/Cargo.toml @@ -23,15 +23,15 @@ parity-scale-codec = { version = "2.3.1", default-features = false, features = [ polkadot-parachain = { path = "../../../parachain" } polkadot-core-primitives = { path = "../../../core-primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util"} -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" } diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index 143d7b5dca9a..0ad1b147c611 100644 --- a/node/core/runtime-api/Cargo.toml +++ b/node/core/runtime-api/Cargo.toml @@ -10,18 +10,18 @@ tracing = "0.1.31" memory-lru = "0.1.0" parity-util-mem = { version = "0.10.0", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures = { version = "0.3.21", features = ["thread-pool"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/jaeger/Cargo.toml b/node/jaeger/Cargo.toml index d7a16098c190..792cd9a4a9a6 100644 --- a/node/jaeger/Cargo.toml +++ b/node/jaeger/Cargo.toml @@ -12,8 +12,8 @@ lazy_static = "1.4" parking_lot = "0.12.0" polkadot-primitives = { path = "../../primitives" } polkadot-node-primitives = { path = "../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } thiserror = "1.0.30" log = "0.4.13" parity-scale-codec = { version = "2.3.1", default-features = false } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index 8b72a4a6feac..e67741cbc768 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -27,7 +27,7 @@ parity-util-mem = { version = "0.10.0", default-features = false, features = ["j color-eyre = { version = "0.6.0", default-features = false } assert_matches = "1.5" async-trait = "0.1.52" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } clap = { version = "3.0", features = ["derive"] } futures = "0.3.21" futures-timer = "3.0.2" @@ -38,5 +38,5 @@ default = [] [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures = { version = "0.3.21", features = ["thread-pool"] } diff --git a/node/metrics/Cargo.toml b/node/metrics/Cargo.toml index 4c0ad72bad2f..9e53de291480 100644 --- a/node/metrics/Cargo.toml +++ b/node/metrics/Cargo.toml @@ -13,11 +13,11 @@ tracing = "0.1.31" metered-channel = { path = "../metered-channel" } # Both `sc-service` and `sc-cli` are required by runtime metrics `logger_hook()`. -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } codec = { package = "parity-scale-codec", version = "2.2.0" } primitives = { package = "polkadot-primitives", path = "../../primitives/" } bs58 = { version = "0.4.0", features = ["alloc"] } @@ -30,10 +30,10 @@ tempfile = "3.2.0" hyper = { version = "0.14.17", default-features = false, features = ["http1", "tcp"] } tokio = "1.16" polkadot-test-service = { path = "../test/service", features=["runtime-metrics"]} -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } prometheus-parse = {version = "0.2.2"} [features] diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index 83e628663767..1e7039f4fecf 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -15,7 +15,7 @@ futures = "0.3.21" tracing = "0.1.31" [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "na-epm-pub" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index 41e8d4d40195..5b1b0da6fcfb 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -14,8 +14,8 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } thiserror = "1.0.30" rand = "0.8.5" derive_more = "0.99.17" @@ -23,10 +23,10 @@ lru = "0.7.2" [dev-dependencies] polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures-timer = "3.0.2" assert_matches = "1.4.0" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/availability-recovery/Cargo.toml b/node/network/availability-recovery/Cargo.toml index 70756fefdab8..af11b5e8ed56 100644 --- a/node/network/availability-recovery/Cargo.toml +++ b/node/network/availability-recovery/Cargo.toml @@ -18,7 +18,7 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-network-protocol = { path = "../../network/protocol" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] assert_matches = "1.4.0" @@ -26,10 +26,10 @@ env_logger = "0.9.0" futures-timer = "3.0.2" log = "0.4.11" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-subsystem-test-helpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index 346a26353cb1..0f43527520a5 100644 --- a/node/network/bitfield-distribution/Cargo.toml +++ b/node/network/bitfield-distribution/Cargo.toml @@ -15,9 +15,9 @@ polkadot-node-network-protocol = { path = "../../network/protocol" } [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } maplit = "1.0.2" log = "0.4.13" env_logger = "0.9.0" diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index 4062d463b8a7..cbab02295637 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -10,8 +10,8 @@ futures = "0.3.21" tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-overseer = { path = "../../overseer" } polkadot-node-network-protocol = { path = "../protocol" } @@ -21,7 +21,7 @@ parking_lot = "0.12.0" [dev-dependencies] assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures-timer = "3" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index 21ec6620cbf4..b8aca5a34e4f 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -12,9 +12,9 @@ futures-timer = "3" thiserror = "1.0.30" tracing = "0.1.31" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-network-protocol = { path = "../../network/protocol" } @@ -27,9 +27,9 @@ log = "0.4.13" env_logger = "0.9.0" assert_matches = "1.4.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } parity-scale-codec = { version = "2.3.1", features = ["std"] } polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index 7c2f0436d6da..512c9a52b210 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -15,18 +15,18 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } thiserror = "1.0.30" lru = "0.7.2" [dev-dependencies] async-trait = "0.1.52" polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures-timer = "3.0.2" assert_matches = "1.4.0" lazy_static = "1.4.0" diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index 221f6de7bd2b..b23a90492bda 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -5,10 +5,10 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-node-network-protocol = { path = "../protocol" } polkadot-node-subsystem = { path = "../../subsystem" } @@ -22,9 +22,9 @@ rand_chacha = { version = "0.3.1", default-features = false } tracing = "0.1.31" [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index a1bc6ac1f257..87d121578cf0 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -11,8 +11,8 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } strum = { version = "0.23", features = ["derive"] } derive_more = "0.99.17" futures = "0.3.21" diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index 4a3a06a25a96..399b3609b814 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -9,8 +9,8 @@ edition = "2018" futures = "0.3.21" tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } @@ -24,12 +24,12 @@ thiserror = "1.0.30" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures-timer = "3.0.2" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index 4392b6997d6f..0da6f15b9c48 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures = "0.3.21" futures-timer = "3.0.2" parking_lot = "0.12.0" @@ -22,7 +22,7 @@ parity-util-mem = { version = ">= 0.10.1", default-features = false } [dev-dependencies] metered-channel = { path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures = { version = "0.3.21", features = ["thread-pool"] } femme = "2.1.1" assert_matches = "1.4.0" diff --git a/node/primitives/Cargo.toml b/node/primitives/Cargo.toml index 96af76f07c4d..8eda2b943c4e 100644 --- a/node/primitives/Cargo.toml +++ b/node/primitives/Cargo.toml @@ -10,12 +10,12 @@ bounded-vec = "0.5" futures = "0.3.21" polkadot-primitives = { path = "../../primitives" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-parachain = { path = "../../parachain", default-features = false } schnorrkel = "0.9.1" thiserror = "1.0.30" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index b06b59339e8b..2cb0a3f56a40 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -6,59 +6,59 @@ edition = "2018" [dependencies] # Substrate Client -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +service = { package = "sc-service", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } # Substrate Primitives -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } # Substrate Pallets -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } # Substrate Other -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } # External Crates futures = "0.3.21" diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index 5a5408bc5984..23a8d3ba97cc 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -12,11 +12,11 @@ parking_lot = "0.12.0" polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] polkadot-overseer = { path = "../overseer" } diff --git a/node/subsystem-types/Cargo.toml b/node/subsystem-types/Cargo.toml index a0e6586c3fd5..b03f744cc9ac 100644 --- a/node/subsystem-types/Cargo.toml +++ b/node/subsystem-types/Cargo.toml @@ -14,7 +14,7 @@ polkadot-node-network-protocol = { path = "../network/protocol" } polkadot-statement-table = { path = "../../statement-table" } polkadot-node-jaeger = { path = "../jaeger" } polkadot-overseer-gen = { path = "../overseer/overseer-gen" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } smallvec = "1.8.0" -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } thiserror = "1.0.30" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index 7b2596a5ac25..a828f2bc32fe 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -26,9 +26,9 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-overseer = { path = "../overseer" } metered-channel = { path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] assert_matches = "1.4.0" diff --git a/node/test/client/Cargo.toml b/node/test/client/Cargo.toml index e8f404ed870c..615b26a7d681 100644 --- a/node/test/client/Cargo.toml +++ b/node/test/client/Cargo.toml @@ -14,20 +14,20 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } # Substrate dependencies -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures = "0.3.21" diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index 98aaf24bf5a6..1bb5f6e3ed70 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -27,40 +27,40 @@ test-runtime-constants = { path = "../../../runtime/test-runtime/constants" } polkadot-runtime-parachains = { path = "../../../runtime/parachains" } # Substrate dependencies -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "wasmtime" ] } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "wasmtime" ] , branch = "na-epm-pub" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } serde_json = "1.0.79" -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } tokio = { version = "1.16", features = ["macros"] } [features] diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 1cf1801f4a24..d238652abfb4 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -12,10 +12,10 @@ edition = "2018" parity-scale-codec = { version = "2.0.0", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.10.0", default-features = false, optional = true } scale-info = { version = "1.0", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } polkadot-core-primitives = { path = "../core-primitives", default-features = false } derive_more = "0.99.11" diff --git a/parachain/test-parachains/Cargo.toml b/parachain/test-parachains/Cargo.toml index fc769e898dfb..d462ed7ffdcf 100644 --- a/parachain/test-parachains/Cargo.toml +++ b/parachain/test-parachains/Cargo.toml @@ -13,7 +13,7 @@ adder = { package = "test-parachain-adder", path = "adder" } halt = { package = "test-parachain-halt", path = "halt" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index 781c27893584..7cbbf1e2a78a 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -9,15 +9,15 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "na-epm-pub" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/adder/collator/Cargo.toml b/parachain/test-parachains/adder/collator/Cargo.toml index 4859d4655c7b..dd7ee49a9694 100644 --- a/parachain/test-parachains/adder/collator/Cargo.toml +++ b/parachain/test-parachains/adder/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } tokio = { version = "1.16", features = ["macros"] } diff --git a/parachain/test-parachains/halt/Cargo.toml b/parachain/test-parachains/halt/Cargo.toml index a79f1773c7ef..ccc591cfe182 100644 --- a/parachain/test-parachains/halt/Cargo.toml +++ b/parachain/test-parachains/halt/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" [dependencies] [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = [ "std" ] diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index faf41737c0f9..977a0f639e5c 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -8,24 +8,24 @@ edition = "2018" serde = { version = "1.0.136", optional = true, features = ["derive"] } scale-info = { version = "1.0", default-features = false, features = ["bit-vec", "derive"] } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } polkadot-parachain = { path = "../parachain", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } hex-literal = "0.3.4" parity-util-mem = { version = "0.10.0", default-features = false, optional = true } diff --git a/primitives/test-helpers/Cargo.toml b/primitives/test-helpers/Cargo.toml index 61005169a87c..86c5d0b622f8 100644 --- a/primitives/test-helpers/Cargo.toml +++ b/primitives/test-helpers/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-primitives = { path = "../" } diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 28ca97b49608..47d6a8e92e16 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -7,25 +7,25 @@ edition = "2018" [dependencies] jsonrpc-core = "18.0.0" polkadot-primitives = { path = "../primitives" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index da760b960c87..a52f087daee2 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -15,34 +15,34 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } libsecp256k1 = { version = "0.7.0", default-features = false } @@ -53,10 +53,10 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } trie-db = "0.23.1" serde_json = "1.0.79" libsecp256k1 = "0.7.0" diff --git a/runtime/common/slot_range_helper/Cargo.toml b/runtime/common/slot_range_helper/Cargo.toml index d728f7f7b1f4..0e9fbc836351 100644 --- a/runtime/common/slot_range_helper/Cargo.toml +++ b/runtime/common/slot_range_helper/Cargo.toml @@ -8,8 +8,8 @@ edition = "2018" paste = "1.0" enumn = "0.1.3" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 3615191879e5..f793c4796a36 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -16,72 +16,72 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } kusama-runtime-constants = { package = "kusama-runtime-constants", path = "./constants", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-gilt = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -95,13 +95,13 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } separator = "0.4.1" serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml index ab0f9e22645c..2cd69bdb9eb1 100644 --- a/runtime/kusama/constants/Cargo.toml +++ b/runtime/kusama/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/metrics/Cargo.toml b/runtime/metrics/Cargo.toml index 14aefaa2626f..28126bd76211 100644 --- a/runtime/metrics/Cargo.toml +++ b/runtime/metrics/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } parity-scale-codec = { version = "2.3.1", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index 028b749452d9..2b91fc64ae96 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -14,28 +14,28 @@ serde = { version = "1.0.136", features = [ "derive" ], optional = true } derive_more = "0.99.17" bitflags = "1.3.2" -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sp-tracing = { version = "4.0.0-dev", branch = "master", git = "https://github.com/paritytech/substrate", default-features = false, optional = true } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } +sp-tracing = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } xcm = { package = "xcm", path = "../../xcm", default-features = false } xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false } @@ -49,11 +49,11 @@ polkadot-runtime-metrics = { path = "../metrics", default-features = false} [dev-dependencies] futures = "0.3.21" hex-literal = "0.3.4" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers"} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } thousands = "0.2.0" assert_matches = "1" diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index f8f5a5d915bb..1ea4d207a006 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -16,68 +16,68 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } polkadot-runtime-constants = { package = "polkadot-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -91,14 +91,14 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } trie-db = "0.23.1" serde_json = "1.0.79" separator = "0.4.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/polkadot/constants/Cargo.toml b/runtime/polkadot/constants/Cargo.toml index 2743da8533a0..f8653338db8e 100644 --- a/runtime/polkadot/constants/Cargo.toml +++ b/runtime/polkadot/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index ac92aeeb2b51..21b6139df5cc 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -13,51 +13,51 @@ serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" log = { version = "0.4.14", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } rococo-runtime-constants = { package = "rococo-runtime-constants", path = "./constants", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -81,11 +81,11 @@ pallet-bridge-grandpa = { path = "../../bridges/modules/grandpa", default-featur pallet-bridge-messages = { path = "../../bridges/modules/messages", default-features = false } # Benchmarking Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } hex-literal = { version = "0.3.4", optional = true } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/rococo/constants/Cargo.toml b/runtime/rococo/constants/Cargo.toml index aab5b507a6c3..6f32c851d5d8 100644 --- a/runtime/rococo/constants/Cargo.toml +++ b/runtime/rococo/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index 45b434f0baa5..595137d15e2f 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -15,45 +15,45 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } test-runtime-constants = { package = "test-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -67,12 +67,12 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/test-runtime/constants/Cargo.toml b/runtime/test-runtime/constants/Cargo.toml index 820dcee5083e..88ca4acf395a 100644 --- a/runtime/test-runtime/constants/Cargo.toml +++ b/runtime/test-runtime/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index 37ad7429b4d0..3d59ea6ccd01 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -15,70 +15,70 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } westend-runtime-constants = { package = "westend-runtime-constants", path = "./constants", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -93,12 +93,12 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/runtime/westend/constants/Cargo.toml b/runtime/westend/constants/Cargo.toml index 9a104eadca88..5dd5308c988d 100644 --- a/runtime/westend/constants/Cargo.toml +++ b/runtime/westend/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index d4f95908775b..4c5f808981fd 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" [dependencies] parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/utils/generate-bags/Cargo.toml b/utils/generate-bags/Cargo.toml index 4cb2d82e3083..cf8dced17291 100644 --- a/utils/generate-bags/Cargo.toml +++ b/utils/generate-bags/Cargo.toml @@ -7,8 +7,8 @@ edition = "2018" [dependencies] clap = { version = "3.0", features = ["derive"] } -generate-bags = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +generate-bags = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } westend-runtime = { path = "../../runtime/westend" } kusama-runtime = { path = "../../runtime/kusama" } diff --git a/utils/remote-ext-tests/bags-list/Cargo.toml b/utils/remote-ext-tests/bags-list/Cargo.toml index 7af6644ed04d..34a750a25eab 100644 --- a/utils/remote-ext-tests/bags-list/Cargo.toml +++ b/utils/remote-ext-tests/bags-list/Cargo.toml @@ -12,10 +12,10 @@ polkadot-runtime-constants = { version = "0.9.17", path = "../../../runtime/polk kusama-runtime-constants = { version = "0.9.17", path = "../../../runtime/kusama/constants" } westend-runtime-constants = { version = "0.9.17", path = "../../../runtime/westend/constants" } -pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } clap = { version = "3.0", features = ["derive"] } log = "0.4.14" diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 301c53fead24..29ceae35f495 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -16,22 +16,22 @@ serde_json = "1.0" thiserror = "1.0.30" tokio = { version = "1.16", features = ["macros", "rt-multi-thread", "sync"] } -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } - -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } - -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } + +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } + +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } core-primitives = { package = "polkadot-core-primitives", path = "../../core-primitives" } @@ -43,4 +43,4 @@ westend-runtime = { path = "../../runtime/westend" } sub-tokens = { git = "https://github.com/paritytech/substrate-debug-kit", branch = "master" } [dev-dependencies] -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } diff --git a/xcm/pallet-xcm-benchmarks/Cargo.toml b/xcm/pallet-xcm-benchmarks/Cargo.toml index 0cc3c4bb0202..62cc848d2172 100644 --- a/xcm/pallet-xcm-benchmarks/Cargo.toml +++ b/xcm/pallet-xcm-benchmarks/Cargo.toml @@ -10,21 +10,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } scale-info = { version = "1.0", default-features = false, features = ["derive"] } -frame-support = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -frame-system = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -sp-runtime = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -sp-std = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-support = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +frame-system = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +sp-std = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } xcm-executor = { path = "../xcm-executor", default-features = false, features = ["runtime-benchmarks"] } -frame-benchmarking = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } xcm = { path = "..", default-features = false, features = ["runtime-benchmarks"] } log = "0.4.0" [dev-dependencies] -pallet-balances = { branch = "master", git = "https://github.com/paritytech/substrate" } -pallet-assets = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-core = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-io = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-tracing = { branch = "master", git = "https://github.com/paritytech/substrate" } +pallet-balances = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +pallet-assets = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } xcm-builder = { path = "../xcm-builder" } xcm = { path = ".." } # temp diff --git a/xcm/pallet-xcm/Cargo.toml b/xcm/pallet-xcm/Cargo.toml index b497f3a10f11..c5a8d894a5fb 100644 --- a/xcm/pallet-xcm/Cargo.toml +++ b/xcm/pallet-xcm/Cargo.toml @@ -10,19 +10,19 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] serde = { version = "1.0.136", optional = true, features = ["derive"] } log = { version = "0.4.14", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } xcm-builder = { path = "../xcm-builder" } polkadot-parachain = { path = "../../parachain" } diff --git a/xcm/xcm-builder/Cargo.toml b/xcm/xcm-builder/Cargo.toml index 36be7d2e41d5..c8b114f21a45 100644 --- a/xcm/xcm-builder/Cargo.toml +++ b/xcm/xcm-builder/Cargo.toml @@ -10,21 +10,21 @@ parity-scale-codec = { version = "2.3.1", default-features = false, features = [ scale-info = { version = "1.0", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } log = { version = "0.4.0", default-features = false } # Polkadot dependencies polkadot-parachain = { path = "../../parachain", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } pallet-xcm = { path = "../pallet-xcm" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } [features] diff --git a/xcm/xcm-executor/Cargo.toml b/xcm/xcm-executor/Cargo.toml index ac4f1fea5172..e9f78eb1b89e 100644 --- a/xcm/xcm-executor/Cargo.toml +++ b/xcm/xcm-executor/Cargo.toml @@ -9,14 +9,14 @@ version = "0.9.17" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } log = { version = "0.4.14", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } [features] default = ["std"] diff --git a/xcm/xcm-executor/integration-tests/Cargo.toml b/xcm/xcm-executor/integration-tests/Cargo.toml index 89ad1713ab8d..bb966421df50 100644 --- a/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/xcm/xcm-executor/integration-tests/Cargo.toml @@ -6,20 +6,20 @@ description = "Integration tests for the XCM Executor" version = "0.9.17" [dependencies] -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } futures = "0.3.21" pallet-xcm = { path = "../../pallet-xcm" } polkadot-test-client = { path = "../../../node/test/client" } polkadot-test-runtime = { path = "../../../runtime/test-runtime" } polkadot-test-service = { path = "../../../node/test/service" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } xcm = { path = "../..", default-features = false } xcm-executor = { path = ".." } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } [features] default = ["std"] diff --git a/xcm/xcm-simulator/Cargo.toml b/xcm/xcm-simulator/Cargo.toml index e3904603b90e..87f7c919da48 100644 --- a/xcm/xcm-simulator/Cargo.toml +++ b/xcm/xcm-simulator/Cargo.toml @@ -9,9 +9,9 @@ edition = "2018" codec = { package = "parity-scale-codec", version = "2.0.0" } paste = "1.0.6" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } xcm = { path = "../" } xcm-executor = { path = "../xcm-executor" } diff --git a/xcm/xcm-simulator/example/Cargo.toml b/xcm/xcm-simulator/example/Cargo.toml index e4348c838df4..f893876fc7cc 100644 --- a/xcm/xcm-simulator/example/Cargo.toml +++ b/xcm/xcm-simulator/example/Cargo.toml @@ -9,13 +9,13 @@ edition = "2018" codec = { package = "parity-scale-codec", version = "2.0.0" } scale-info = { version = "1.0", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } xcm = { path = "../../" } xcm-simulator = { path = "../" } diff --git a/xcm/xcm-simulator/fuzzer/Cargo.toml b/xcm/xcm-simulator/fuzzer/Cargo.toml index c6b0552d0768..5328bbbda121 100644 --- a/xcm/xcm-simulator/fuzzer/Cargo.toml +++ b/xcm/xcm-simulator/fuzzer/Cargo.toml @@ -10,13 +10,13 @@ codec = { package = "parity-scale-codec", version = "2.0.0" } honggfuzz = "0.5.54" scale-info = { version = "1.0", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } xcm = { path = "../../" } xcm-simulator = { path = "../" } From b3740f551228090b88c8bd3cfc6c63ce267f70b7 Mon Sep 17 00:00:00 2001 From: Niklas Date: Tue, 22 Feb 2022 15:09:36 +0100 Subject: [PATCH 16/27] Revert "diener update --substrate --branch na-epm-pub" This reverts commit b3b9a58c9313372c8f21cf247ba0c8528d9953c0. --- Cargo.lock | 326 +++++++++--------- Cargo.toml | 2 +- bridges/bin/millau/node/Cargo.toml | 60 ++-- bridges/bin/millau/runtime/Cargo.toml | 66 ++-- bridges/bin/rialto-parachain/node/Cargo.toml | 68 ++-- .../bin/rialto-parachain/runtime/Cargo.toml | 52 +-- bridges/bin/rialto/node/Cargo.toml | 94 ++--- bridges/bin/rialto/runtime/Cargo.toml | 70 ++-- bridges/bin/runtime-common/Cargo.toml | 14 +- bridges/fuzz/storage-proof/Cargo.toml | 8 +- bridges/modules/dispatch/Cargo.toml | 12 +- bridges/modules/grandpa/Cargo.toml | 18 +- bridges/modules/messages/Cargo.toml | 16 +- .../modules/shift-session-manager/Cargo.toml | 14 +- bridges/modules/token-swap/Cargo.toml | 16 +- bridges/primitives/chain-kusama/Cargo.toml | 8 +- bridges/primitives/chain-millau/Cargo.toml | 16 +- bridges/primitives/chain-polkadot/Cargo.toml | 8 +- .../chain-rialto-parachain/Cargo.toml | 12 +- bridges/primitives/chain-rialto/Cargo.toml | 12 +- bridges/primitives/chain-rococo/Cargo.toml | 10 +- bridges/primitives/chain-westend/Cargo.toml | 10 +- bridges/primitives/chain-wococo/Cargo.toml | 6 +- bridges/primitives/header-chain/Cargo.toml | 10 +- .../primitives/message-dispatch/Cargo.toml | 4 +- bridges/primitives/messages/Cargo.toml | 6 +- bridges/primitives/polkadot-core/Cargo.toml | 14 +- bridges/primitives/runtime/Cargo.toml | 14 +- bridges/primitives/test-utils/Cargo.toml | 8 +- bridges/primitives/token-swap/Cargo.toml | 6 +- bridges/relays/bin-substrate/Cargo.toml | 14 +- bridges/relays/client-kusama/Cargo.toml | 6 +- bridges/relays/client-millau/Cargo.toml | 10 +- bridges/relays/client-polkadot/Cargo.toml | 6 +- .../relays/client-rialto-parachain/Cargo.toml | 6 +- bridges/relays/client-rialto/Cargo.toml | 10 +- bridges/relays/client-rococo/Cargo.toml | 6 +- bridges/relays/client-substrate/Cargo.toml | 28 +- bridges/relays/client-westend/Cargo.toml | 4 +- bridges/relays/client-wococo/Cargo.toml | 6 +- bridges/relays/lib-substrate-relay/Cargo.toml | 8 +- bridges/relays/messages/Cargo.toml | 2 +- bridges/relays/utils/Cargo.toml | 2 +- cli/Cargo.toml | 16 +- core-primitives/Cargo.toml | 6 +- erasure-coding/Cargo.toml | 4 +- node/client/Cargo.toml | 50 +-- node/collation-generation/Cargo.toml | 4 +- node/core/approval-voting/Cargo.toml | 18 +- node/core/av-store/Cargo.toml | 4 +- node/core/backing/Cargo.toml | 12 +- node/core/bitfield-signing/Cargo.toml | 2 +- node/core/candidate-validation/Cargo.toml | 6 +- node/core/chain-api/Cargo.toml | 8 +- node/core/chain-selection/Cargo.toml | 2 +- node/core/dispute-coordinator/Cargo.toml | 8 +- node/core/parachains-inherent/Cargo.toml | 6 +- node/core/provisioner/Cargo.toml | 4 +- node/core/pvf-checker/Cargo.toml | 12 +- node/core/pvf/Cargo.toml | 18 +- node/core/runtime-api/Cargo.toml | 12 +- node/jaeger/Cargo.toml | 4 +- node/malus/Cargo.toml | 4 +- node/metrics/Cargo.toml | 16 +- node/network/approval-distribution/Cargo.toml | 2 +- .../availability-distribution/Cargo.toml | 12 +- node/network/availability-recovery/Cargo.toml | 10 +- node/network/bitfield-distribution/Cargo.toml | 6 +- node/network/bridge/Cargo.toml | 8 +- node/network/collator-protocol/Cargo.toml | 12 +- node/network/dispute-distribution/Cargo.toml | 12 +- node/network/gossip-support/Cargo.toml | 14 +- node/network/protocol/Cargo.toml | 4 +- .../network/statement-distribution/Cargo.toml | 18 +- node/overseer/Cargo.toml | 6 +- node/primitives/Cargo.toml | 12 +- node/service/Cargo.toml | 94 ++--- node/subsystem-test-helpers/Cargo.toml | 10 +- node/subsystem-types/Cargo.toml | 4 +- node/subsystem-util/Cargo.toml | 6 +- node/test/client/Cargo.toml | 28 +- node/test/service/Cargo.toml | 62 ++-- parachain/Cargo.toml | 8 +- parachain/test-parachains/Cargo.toml | 2 +- parachain/test-parachains/adder/Cargo.toml | 6 +- .../test-parachains/adder/collator/Cargo.toml | 12 +- parachain/test-parachains/halt/Cargo.toml | 2 +- primitives/Cargo.toml | 30 +- primitives/test-helpers/Cargo.toml | 6 +- rpc/Cargo.toml | 44 +-- runtime/common/Cargo.toml | 60 ++-- runtime/common/slot_range_helper/Cargo.toml | 4 +- runtime/kusama/Cargo.toml | 130 +++---- runtime/kusama/constants/Cargo.toml | 4 +- runtime/metrics/Cargo.toml | 4 +- runtime/parachains/Cargo.toml | 50 +-- runtime/polkadot/Cargo.toml | 122 +++---- runtime/polkadot/constants/Cargo.toml | 4 +- runtime/rococo/Cargo.toml | 88 ++--- runtime/rococo/constants/Cargo.toml | 4 +- runtime/test-runtime/Cargo.toml | 80 ++--- runtime/test-runtime/constants/Cargo.toml | 4 +- runtime/westend/Cargo.toml | 124 +++---- runtime/westend/constants/Cargo.toml | 4 +- statement-table/Cargo.toml | 2 +- utils/generate-bags/Cargo.toml | 4 +- utils/remote-ext-tests/bags-list/Cargo.toml | 8 +- utils/staking-miner/Cargo.toml | 34 +- xcm/pallet-xcm-benchmarks/Cargo.toml | 20 +- xcm/pallet-xcm/Cargo.toml | 14 +- xcm/xcm-builder/Cargo.toml | 18 +- xcm/xcm-executor/Cargo.toml | 14 +- xcm/xcm-executor/integration-tests/Cargo.toml | 14 +- xcm/xcm-simulator/Cargo.toml | 6 +- xcm/xcm-simulator/example/Cargo.toml | 14 +- xcm/xcm-simulator/fuzzer/Cargo.toml | 14 +- 116 files changed, 1289 insertions(+), 1289 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7c545b9972cf..0dc2f9de533a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -439,7 +439,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "beefy-primitives", "fnv", @@ -468,7 +468,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -491,12 +491,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "scale-info", @@ -1889,7 +1889,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", ] @@ -1907,7 +1907,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -1929,7 +1929,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "Inflector", "chrono", @@ -1956,7 +1956,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -1970,7 +1970,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "bitflags", "frame-metadata", @@ -2027,7 +2027,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2039,7 +2039,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.2", @@ -2051,7 +2051,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "proc-macro2", "quote", @@ -2061,7 +2061,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2084,7 +2084,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -2095,7 +2095,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "log", @@ -2112,7 +2112,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -2127,7 +2127,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "sp-api", @@ -2136,7 +2136,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "sp-api", @@ -2332,7 +2332,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "chrono", "frame-election-provider-support", @@ -4752,7 +4752,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4766,7 +4766,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -4782,7 +4782,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -4797,7 +4797,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4821,7 +4821,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4841,7 +4841,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4861,7 +4861,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4876,7 +4876,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "beefy-primitives", "frame-support", @@ -4892,7 +4892,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4917,7 +4917,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5001,7 +5001,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5018,7 +5018,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5034,7 +5034,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5057,7 +5057,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5075,7 +5075,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5090,7 +5090,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5113,7 +5113,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5129,7 +5129,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5149,7 +5149,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5166,7 +5166,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5183,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -5217,7 +5217,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5234,7 +5234,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5249,7 +5249,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -5263,7 +5263,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -5280,7 +5280,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5303,7 +5303,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5319,7 +5319,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5334,7 +5334,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -5348,7 +5348,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5364,7 +5364,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -5385,7 +5385,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5401,7 +5401,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -5415,7 +5415,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5438,7 +5438,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -5449,7 +5449,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "log", "sp-arithmetic", @@ -5458,7 +5458,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -5472,7 +5472,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5490,7 +5490,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5509,7 +5509,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-support", "frame-system", @@ -5526,7 +5526,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5543,7 +5543,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5554,7 +5554,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5571,7 +5571,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5587,7 +5587,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7990,7 +7990,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "env_logger 0.9.0", "jsonrpsee 0.8.0", @@ -8337,7 +8337,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "log", "sp-core", @@ -8348,7 +8348,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "futures 0.3.21", @@ -8375,7 +8375,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8398,7 +8398,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8414,7 +8414,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8431,7 +8431,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -8442,7 +8442,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "chrono", "clap", @@ -8480,7 +8480,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "fnv", "futures 0.3.21", @@ -8508,7 +8508,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "hash-db", "kvdb", @@ -8533,7 +8533,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "futures 0.3.21", @@ -8557,7 +8557,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "fork-tree", @@ -8600,7 +8600,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -8624,7 +8624,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8637,7 +8637,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "futures 0.3.21", @@ -8662,7 +8662,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "sc-client-api", "sp-authorship", @@ -8673,10 +8673,11 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "lazy_static", "libsecp256k1", + "log", "lru 0.6.6", "parity-scale-codec", "parking_lot 0.11.2", @@ -8694,14 +8695,13 @@ dependencies = [ "sp-trie", "sp-version", "sp-wasm-interface", - "tracing", "wasmi", ] [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "environmental", "parity-scale-codec", @@ -8718,7 +8718,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "log", "parity-scale-codec", @@ -8734,7 +8734,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8752,7 +8752,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "ahash", "async-trait", @@ -8791,7 +8791,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -8815,7 +8815,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "ansi_term", "futures 0.3.21", @@ -8832,7 +8832,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "hex", @@ -8847,7 +8847,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-std", "async-trait", @@ -8897,7 +8897,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "ahash", "futures 0.3.21", @@ -8914,7 +8914,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "bytes 1.1.0", "fnv", @@ -8942,7 +8942,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "libp2p", @@ -8955,7 +8955,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8964,7 +8964,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "hash-db", @@ -8995,7 +8995,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9020,7 +9020,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "directories", @@ -9101,7 +9101,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "log", "parity-scale-codec", @@ -9115,7 +9115,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -9136,7 +9136,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "chrono", "futures 0.3.21", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "ansi_term", "atty", @@ -9185,7 +9185,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -9196,7 +9196,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9223,7 +9223,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "log", @@ -9236,7 +9236,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9685,7 +9685,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "hash-db", "log", @@ -9702,7 +9702,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "blake2 0.10.2", "proc-macro-crate 1.1.2", @@ -9714,7 +9714,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9727,7 +9727,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "integer-sqrt", "num-traits", @@ -9742,7 +9742,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9755,7 +9755,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "parity-scale-codec", @@ -9767,7 +9767,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "sp-api", @@ -9779,7 +9779,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "log", @@ -9797,7 +9797,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "futures 0.3.21", @@ -9816,7 +9816,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "merlin", @@ -9839,7 +9839,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9851,7 +9851,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -9863,7 +9863,7 @@ dependencies = [ [[package]] name = "sp-core" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "base58", "bitflags", @@ -9908,7 +9908,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "blake2 0.10.2", "byteorder", @@ -9922,7 +9922,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "proc-macro2", "quote", @@ -9933,7 +9933,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "kvdb", "parking_lot 0.11.2", @@ -9942,7 +9942,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "proc-macro2", "quote", @@ -9952,7 +9952,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "environmental", "parity-scale-codec", @@ -9963,7 +9963,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "finality-grandpa", "log", @@ -9981,7 +9981,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9995,7 +9995,7 @@ dependencies = [ [[package]] name = "sp-io" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "hash-db", @@ -10019,7 +10019,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "lazy_static", "sp-core", @@ -10030,7 +10030,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "futures 0.3.21", @@ -10047,7 +10047,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "thiserror", "zstd", @@ -10056,7 +10056,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "scale-info", @@ -10071,7 +10071,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -10082,7 +10082,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "sp-api", "sp-core", @@ -10092,7 +10092,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "backtrace", "lazy_static", @@ -10102,7 +10102,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "rustc-hash", "serde", @@ -10112,7 +10112,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "either", "hash256-std-hasher", @@ -10134,7 +10134,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10151,7 +10151,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "Inflector", "proc-macro-crate 1.1.2", @@ -10163,7 +10163,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "serde", "serde_json", @@ -10172,7 +10172,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "scale-info", @@ -10186,7 +10186,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "scale-info", @@ -10197,7 +10197,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "hash-db", "log", @@ -10220,12 +10220,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" [[package]] name = "sp-storage" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10238,7 +10238,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "log", "sp-core", @@ -10251,7 +10251,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "futures-timer", @@ -10267,7 +10267,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "sp-std", @@ -10279,7 +10279,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "sp-api", "sp-runtime", @@ -10288,7 +10288,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "log", @@ -10304,7 +10304,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "hash-db", "memory-db", @@ -10319,7 +10319,7 @@ dependencies = [ [[package]] name = "sp-version" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10336,7 +10336,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10347,7 +10347,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "impl-trait-for-tuples", "log", @@ -10515,7 +10515,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "platforms", ] @@ -10523,7 +10523,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -10545,7 +10545,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-std", "futures-util", @@ -10559,7 +10559,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "async-trait", "futures 0.3.21", @@ -10585,7 +10585,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -10595,7 +10595,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -10606,7 +10606,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "ansi_term", "build-helper", @@ -11201,7 +11201,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-epm-pub#f3577fe91ffd47e6a66ab695ced3f550301acf95" +source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" dependencies = [ "clap", "jsonrpsee 0.4.1", diff --git a/Cargo.toml b/Cargo.toml index 4064a0e833b1..885dc830204b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ assert_cmd = "2.0.4" nix = "0.23.1" tempfile = "3.2.0" tokio = "1.16.1" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-core-primitives = { path = "core-primitives" } [workspace] diff --git a/bridges/bin/millau/node/Cargo.toml b/bridges/bin/millau/node/Cargo.toml index 246db722513d..c4438d0cef3e 100644 --- a/bridges/bin/millau/node/Cargo.toml +++ b/bridges/bin/millau/node/Cargo.toml @@ -23,38 +23,38 @@ pallet-bridge-messages = { path = "../../../modules/messages" } # Substrate Dependencies -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -node-inspect = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "na-epm-pub" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +node-inspect = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [] diff --git a/bridges/bin/millau/runtime/Cargo.toml b/bridges/bin/millau/runtime/Cargo.toml index c1966aaffa0a..13195b95194b 100644 --- a/bridges/bin/millau/runtime/Cargo.toml +++ b/bridges/bin/millau/runtime/Cargo.toml @@ -30,41 +30,41 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/bin/rialto-parachain/node/Cargo.toml b/bridges/bin/rialto-parachain/node/Cargo.toml index 72a52e5b4f95..8adc998e47ee 100644 --- a/bridges/bin/rialto-parachain/node/Cargo.toml +++ b/bridges/bin/rialto-parachain/node/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } [[bin]] name = 'rialto-parachain-collator' @@ -32,44 +32,44 @@ jsonrpc-core = '18.0' rialto-parachain-runtime = { path = '../runtime' } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } ## Substrate Client Dependencies -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", features = ['wasmtime'] , branch = "na-epm-pub" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", features = ['wasmtime'] } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } ## Substrate Primitive Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } # Cumulus dependencies cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "master" } @@ -86,4 +86,4 @@ polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "maste polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } \ No newline at end of file diff --git a/bridges/bin/rialto-parachain/runtime/Cargo.toml b/bridges/bin/rialto-parachain/runtime/Cargo.toml index f037d5d50453..20ce70aba8f6 100644 --- a/bridges/bin/rialto-parachain/runtime/Cargo.toml +++ b/bridges/bin/rialto-parachain/runtime/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [dependencies] codec = { package = 'parity-scale-codec', version = '2.0.0', default-features = false, features = ['derive']} @@ -22,35 +22,35 @@ bp-rialto-parachain = { path = "../../../primitives/chain-rialto-parachain", def # Substrate Dependencies ## Substrate Primitive Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } ## Substrate FRAME Dependencies -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } ## Substrate Pallet Dependencies -pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Cumulus Dependencies cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "master", default-features = false } diff --git a/bridges/bin/rialto/node/Cargo.toml b/bridges/bin/rialto/node/Cargo.toml index 38f08cf17bc4..2795f2eecaec 100644 --- a/bridges/bin/rialto/node/Cargo.toml +++ b/bridges/bin/rialto/node/Cargo.toml @@ -28,52 +28,52 @@ rialto-runtime = { path = "../runtime" } # Substrate Dependencies -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -node-inspect = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "na-epm-pub" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +node-inspect = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } #sc-finality-grandpa-warp-sync = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot Dependencies @@ -110,8 +110,8 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", polkadot-statement-distribution = { git = "https://github.com/paritytech/polkadot", branch = "master" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [] diff --git a/bridges/bin/rialto/runtime/Cargo.toml b/bridges/bin/rialto/runtime/Cargo.toml index 03cd6b7fdaa4..8298cdfbfbe8 100644 --- a/bridges/bin/rialto/runtime/Cargo.toml +++ b/bridges/bin/rialto/runtime/Cargo.toml @@ -31,40 +31,40 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Polkadot (parachain) Dependencies @@ -76,7 +76,7 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", libsecp256k1 = { version = "0.7", features = ["hmac"] } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/bin/runtime-common/Cargo.toml b/bridges/bin/runtime-common/Cargo.toml index 99e00bfe2deb..4e693f05451c 100644 --- a/bridges/bin/runtime-common/Cargo.toml +++ b/bridges/bin/runtime-common/Cargo.toml @@ -24,13 +24,13 @@ pallet-bridge-messages = { path = "../../modules/messages", default-features = f # Substrate dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/fuzz/storage-proof/Cargo.toml b/bridges/fuzz/storage-proof/Cargo.toml index 6a244896279c..c4da57b255c8 100644 --- a/bridges/fuzz/storage-proof/Cargo.toml +++ b/bridges/fuzz/storage-proof/Cargo.toml @@ -18,7 +18,7 @@ bp-runtime = { path = "../../primitives/runtime" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/modules/dispatch/Cargo.toml b/bridges/modules/dispatch/Cargo.toml index ee4d14a86458..1d91d0a05094 100644 --- a/bridges/modules/dispatch/Cargo.toml +++ b/bridges/modules/dispatch/Cargo.toml @@ -18,14 +18,14 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/modules/grandpa/Cargo.toml b/bridges/modules/grandpa/Cargo.toml index 9f9fe139d129..01195abe89e1 100644 --- a/bridges/modules/grandpa/Cargo.toml +++ b/bridges/modules/grandpa/Cargo.toml @@ -22,20 +22,20 @@ bp-header-chain = { path = "../../primitives/header-chain", default-features = f # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Optional Benchmarking Dependencies bp-test-utils = { path = "../../primitives/test-utils", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/modules/messages/Cargo.toml b/bridges/modules/messages/Cargo.toml index 1fc8b09f73c5..b48bdc5c0ffd 100644 --- a/bridges/modules/messages/Cargo.toml +++ b/bridges/modules/messages/Cargo.toml @@ -22,18 +22,18 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] hex = "0.4" hex-literal = "0.3" -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/modules/shift-session-manager/Cargo.toml b/bridges/modules/shift-session-manager/Cargo.toml index 8569ae4d1496..9e3e15fddf89 100644 --- a/bridges/modules/shift-session-manager/Cargo.toml +++ b/bridges/modules/shift-session-manager/Cargo.toml @@ -12,15 +12,15 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/modules/token-swap/Cargo.toml b/bridges/modules/token-swap/Cargo.toml index ba8fa07c8591..a6103f688c42 100644 --- a/bridges/modules/token-swap/Cargo.toml +++ b/bridges/modules/token-swap/Cargo.toml @@ -23,16 +23,16 @@ pallet-bridge-messages = { path = "../messages", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/chain-kusama/Cargo.toml b/bridges/primitives/chain-kusama/Cargo.toml index 624e369e4bb3..6ff860357c7c 100644 --- a/bridges/primitives/chain-kusama/Cargo.toml +++ b/bridges/primitives/chain-kusama/Cargo.toml @@ -17,10 +17,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-millau/Cargo.toml b/bridges/primitives/chain-millau/Cargo.toml index 27c3b196b523..f1e17fe96f5a 100644 --- a/bridges/primitives/chain-millau/Cargo.toml +++ b/bridges/primitives/chain-millau/Cargo.toml @@ -22,14 +22,14 @@ serde = { version = "1.0", optional = true, features = ["derive"] } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-polkadot/Cargo.toml b/bridges/primitives/chain-polkadot/Cargo.toml index 0e60865e34c4..917c7f974783 100644 --- a/bridges/primitives/chain-polkadot/Cargo.toml +++ b/bridges/primitives/chain-polkadot/Cargo.toml @@ -17,10 +17,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto-parachain/Cargo.toml b/bridges/primitives/chain-rialto-parachain/Cargo.toml index 1bfdc3c3feda..034188631b8c 100644 --- a/bridges/primitives/chain-rialto-parachain/Cargo.toml +++ b/bridges/primitives/chain-rialto-parachain/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto/Cargo.toml b/bridges/primitives/chain-rialto/Cargo.toml index 9bb3823c6b65..d16ac59484fb 100644 --- a/bridges/primitives/chain-rialto/Cargo.toml +++ b/bridges/primitives/chain-rialto/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-rococo/Cargo.toml b/bridges/primitives/chain-rococo/Cargo.toml index b4999c890f06..6e1189b05f36 100644 --- a/bridges/primitives/chain-rococo/Cargo.toml +++ b/bridges/primitives/chain-rococo/Cargo.toml @@ -16,11 +16,11 @@ bp-polkadot-core = { path = "../polkadot-core", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-westend/Cargo.toml b/bridges/primitives/chain-westend/Cargo.toml index cecf135fb553..4fd1652744ed 100644 --- a/bridges/primitives/chain-westend/Cargo.toml +++ b/bridges/primitives/chain-westend/Cargo.toml @@ -20,11 +20,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-wococo/Cargo.toml b/bridges/primitives/chain-wococo/Cargo.toml index 46d5037d0937..d99783695ad3 100644 --- a/bridges/primitives/chain-wococo/Cargo.toml +++ b/bridges/primitives/chain-wococo/Cargo.toml @@ -16,9 +16,9 @@ bp-rococo = { path = "../chain-rococo", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/header-chain/Cargo.toml b/bridges/primitives/header-chain/Cargo.toml index 456c10ed9fec..76b710247f74 100644 --- a/bridges/primitives/header-chain/Cargo.toml +++ b/bridges/primitives/header-chain/Cargo.toml @@ -14,11 +14,11 @@ serde = { version = "1.0", optional = true } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] assert_matches = "1.5" diff --git a/bridges/primitives/message-dispatch/Cargo.toml b/bridges/primitives/message-dispatch/Cargo.toml index 8b2822430819..9897b3199781 100644 --- a/bridges/primitives/message-dispatch/Cargo.toml +++ b/bridges/primitives/message-dispatch/Cargo.toml @@ -13,8 +13,8 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/messages/Cargo.toml b/bridges/primitives/messages/Cargo.toml index e2e038c1853f..31ec46222cd8 100644 --- a/bridges/primitives/messages/Cargo.toml +++ b/bridges/primitives/messages/Cargo.toml @@ -19,9 +19,9 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/polkadot-core/Cargo.toml b/bridges/primitives/polkadot-core/Cargo.toml index b59c0ada7ed4..f05edd0d91ba 100644 --- a/bridges/primitives/polkadot-core/Cargo.toml +++ b/bridges/primitives/polkadot-core/Cargo.toml @@ -17,13 +17,13 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] hex = "0.4" diff --git a/bridges/primitives/runtime/Cargo.toml b/bridges/primitives/runtime/Cargo.toml index 04bae5b7f46a..7cc165fb4e9c 100644 --- a/bridges/primitives/runtime/Cargo.toml +++ b/bridges/primitives/runtime/Cargo.toml @@ -14,13 +14,13 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] hex-literal = "0.3" diff --git a/bridges/primitives/test-utils/Cargo.toml b/bridges/primitives/test-utils/Cargo.toml index 322d8b803a82..95121c60993a 100644 --- a/bridges/primitives/test-utils/Cargo.toml +++ b/bridges/primitives/test-utils/Cargo.toml @@ -10,10 +10,10 @@ bp-header-chain = { path = "../header-chain", default-features = false } codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false } ed25519-dalek = { version = "1.0", default-features = false, features = ["u64_backend"] } finality-grandpa = { version = "0.14.4", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/token-swap/Cargo.toml b/bridges/primitives/token-swap/Cargo.toml index a951e01535c8..4b16c3567ea6 100644 --- a/bridges/primitives/token-swap/Cargo.toml +++ b/bridges/primitives/token-swap/Cargo.toml @@ -12,9 +12,9 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/relays/bin-substrate/Cargo.toml b/bridges/relays/bin-substrate/Cargo.toml index 98ba9f8490f7..a28c61262f40 100644 --- a/bridges/relays/bin-substrate/Cargo.toml +++ b/bridges/relays/bin-substrate/Cargo.toml @@ -57,12 +57,12 @@ substrate-relay-helper = { path = "../lib-substrate-relay" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot Dependencies @@ -74,6 +74,6 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", [dev-dependencies] hex-literal = "0.3" pallet-bridge-grandpa = { path = "../../modules/grandpa" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } tempfile = "3.2" finality-grandpa = { version = "0.14.0" } diff --git a/bridges/relays/client-kusama/Cargo.toml b/bridges/relays/client-kusama/Cargo.toml index 93900e3e2804..a48d82f641b7 100644 --- a/bridges/relays/client-kusama/Cargo.toml +++ b/bridges/relays/client-kusama/Cargo.toml @@ -25,6 +25,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-millau/Cargo.toml b/bridges/relays/client-millau/Cargo.toml index f85a3fced4a1..49d9dade154c 100644 --- a/bridges/relays/client-millau/Cargo.toml +++ b/bridges/relays/client-millau/Cargo.toml @@ -17,8 +17,8 @@ millau-runtime = { path = "../../bin/millau/runtime" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-polkadot/Cargo.toml b/bridges/relays/client-polkadot/Cargo.toml index 9d7e4d3858b6..ff7748657941 100644 --- a/bridges/relays/client-polkadot/Cargo.toml +++ b/bridges/relays/client-polkadot/Cargo.toml @@ -25,6 +25,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-rialto-parachain/Cargo.toml b/bridges/relays/client-rialto-parachain/Cargo.toml index 92a546d974fc..e4518c687765 100644 --- a/bridges/relays/client-rialto-parachain/Cargo.toml +++ b/bridges/relays/client-rialto-parachain/Cargo.toml @@ -16,6 +16,6 @@ rialto-parachain-runtime = { path = "../../bin/rialto-parachain/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-rialto/Cargo.toml b/bridges/relays/client-rialto/Cargo.toml index f8f733e78afa..3132b26d27fc 100644 --- a/bridges/relays/client-rialto/Cargo.toml +++ b/bridges/relays/client-rialto/Cargo.toml @@ -17,8 +17,8 @@ rialto-runtime = { path = "../../bin/rialto/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-rococo/Cargo.toml b/bridges/relays/client-rococo/Cargo.toml index 1786d9dec67e..28e97d3bf0ce 100644 --- a/bridges/relays/client-rococo/Cargo.toml +++ b/bridges/relays/client-rococo/Cargo.toml @@ -26,6 +26,6 @@ pallet-bridge-messages = { path = "../../modules/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-substrate/Cargo.toml b/bridges/relays/client-substrate/Cargo.toml index 96629dd88337..2eb07fdcde46 100644 --- a/bridges/relays/client-substrate/Cargo.toml +++ b/bridges/relays/client-substrate/Cargo.toml @@ -26,20 +26,20 @@ relay-utils = { path = "../utils" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } #[dev-dependencies] futures = "0.3.7" diff --git a/bridges/relays/client-westend/Cargo.toml b/bridges/relays/client-westend/Cargo.toml index 60f1a16ad8cc..24b05c4f4836 100644 --- a/bridges/relays/client-westend/Cargo.toml +++ b/bridges/relays/client-westend/Cargo.toml @@ -16,5 +16,5 @@ bp-westend = { path = "../../primitives/chain-westend" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-wococo/Cargo.toml b/bridges/relays/client-wococo/Cargo.toml index a852c3698383..ea46c3c898bb 100644 --- a/bridges/relays/client-wococo/Cargo.toml +++ b/bridges/relays/client-wococo/Cargo.toml @@ -24,6 +24,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } pallet-bridge-messages = { path = "../../modules/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/lib-substrate-relay/Cargo.toml b/bridges/relays/lib-substrate-relay/Cargo.toml index c47e28e0bc93..5bee10856daa 100644 --- a/bridges/relays/lib-substrate-relay/Cargo.toml +++ b/bridges/relays/lib-substrate-relay/Cargo.toml @@ -34,10 +34,10 @@ bp-messages = { path = "../../primitives/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] bp-millau = { path = "../../primitives/chain-millau" } diff --git a/bridges/relays/messages/Cargo.toml b/bridges/relays/messages/Cargo.toml index 917c1627adff..b11f00b957a4 100644 --- a/bridges/relays/messages/Cargo.toml +++ b/bridges/relays/messages/Cargo.toml @@ -20,4 +20,4 @@ bp-messages = { path = "../../primitives/messages" } bp-runtime = { path = "../../primitives/runtime" } relay-utils = { path = "../utils" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/utils/Cargo.toml b/bridges/relays/utils/Cargo.toml index d2cf238e8629..a08c3b3d688d 100644 --- a/bridges/relays/utils/Cargo.toml +++ b/bridges/relays/utils/Cargo.toml @@ -28,4 +28,4 @@ bp-runtime = { path = "../../primitives/runtime" } # Substrate dependencies -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0988f679bc1e..231a5f4f5363 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -23,20 +23,20 @@ service = { package = "polkadot-service", path = "../node/service", default-feat polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true } polkadot-performance-test = { path = "../node/test/performance-test", optional = true } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } -sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } polkadot-node-metrics = { path = "../node/metrics" } -sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } # this crate is used only to enable `trie-memory-tracker` feature # see https://github.com/paritytech/substrate/pull/6745 -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["wasmtime", "db", "cli", "full-node", "trie-memory-tracker", "polkadot-native"] diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index 82879ec225a7..bb7c809c65fd 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -5,9 +5,9 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } scale-info = { version = "1.0", default-features = false, features = ["derive"] } parity-scale-codec = { version = "2.3.1", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.10.0", default-features = false, optional = true } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index cadd39c32782..cd5853df5033 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -9,6 +9,6 @@ polkadot-primitives = { path = "../primitives" } polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" } novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["std", "derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" diff --git a/node/client/Cargo.toml b/node/client/Cargo.toml index 1adda724569c..3ebd65de8ab1 100644 --- a/node/client/Cargo.toml +++ b/node/client/Cargo.toml @@ -5,31 +5,31 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } - -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } - -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } - -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } - -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } + +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } + +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } + +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } + +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot Runtimes polkadot-runtime = { path = "../../runtime/polkadot", optional = true } diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index 9d6cb8fbc0fb..09cc647e441c 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -12,8 +12,8 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["bit-vec", "derive"] } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index fb127321f445..a328dec18d50 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -23,19 +23,19 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } -sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] parking_lot = "0.12.0" rand_core = "0.5.1" # should match schnorrkel -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" kvdb-memorydb = "0.10.0" diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index c335e36da688..4c79fc9fcff5 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -26,9 +26,9 @@ env_logger = "0.9.0" assert_matches = "1.4.0" kvdb-memorydb = "0.10.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } parking_lot = "0.12.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index 5f75e9369c67..0bc7ff04c1c3 100644 --- a/node/core/backing/Cargo.toml +++ b/node/core/backing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } @@ -18,11 +18,11 @@ tracing = "0.1.31" thiserror = "1.0.30" [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index ef9a29146784..60501a3137a7 100644 --- a/node/core/bitfield-signing/Cargo.toml +++ b/node/core/bitfield-signing/Cargo.toml @@ -10,7 +10,7 @@ tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } wasm-timer = "0.2.5" thiserror = "1.0.30" diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index 01f8963aeba9..ab0fbccf1268 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -9,7 +9,7 @@ async-trait = "0.1.52" futures = "0.3.21" tracing = "0.1.31" -sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["bit-vec", "derive"] } polkadot-primitives = { path = "../../../primitives" } @@ -22,9 +22,9 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-core-pvf = { path = "../pvf" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index 6fe7a39f06ab..ecac94abcb46 100644 --- a/node/core/chain-api/Cargo.toml +++ b/node/core/chain-api/Cargo.toml @@ -7,12 +7,12 @@ edition = "2018" [dependencies] futures = "0.3.21" tracing = "0.1.31" -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] futures = { version = "0.3.21", features = ["thread-pool"] } @@ -20,4 +20,4 @@ maplit = "1.0.2" parity-scale-codec = "2.3.1" polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/chain-selection/Cargo.toml b/node/core/chain-selection/Cargo.toml index d94fd7a55c1a..38544cf0574c 100644 --- a/node/core/chain-selection/Cargo.toml +++ b/node/core/chain-selection/Cargo.toml @@ -19,7 +19,7 @@ parity-scale-codec = "2" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } parking_lot = "0.12" assert_matches = "1" kvdb-memorydb = "0.10.0" diff --git a/node/core/dispute-coordinator/Cargo.toml b/node/core/dispute-coordinator/Cargo.toml index 9b4af76c0b8e..686441352bbe 100644 --- a/node/core/dispute-coordinator/Cargo.toml +++ b/node/core/dispute-coordinator/Cargo.toml @@ -17,14 +17,14 @@ polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] kvdb-memorydb = "0.10.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } assert_matches = "1.4.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index fa0abf5b4e77..a050d4a6974e 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -12,6 +12,6 @@ thiserror = "1.0.30" async-trait = "0.1.52" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-primitives = { path = "../../../primitives" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index 9980c1ffe914..1fbe9f83bef8 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -17,7 +17,7 @@ futures-timer = "3.0.2" rand = "0.8.5" [dev-dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/pvf-checker/Cargo.toml b/node/core/pvf-checker/Cargo.toml index 8a74b4909d10..efb3b1d2ac0a 100644 --- a/node/core/pvf-checker/Cargo.toml +++ b/node/core/pvf-checker/Cargo.toml @@ -15,14 +15,14 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-overseer = { path = "../../overseer" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers"} test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" diff --git a/node/core/pvf/Cargo.toml b/node/core/pvf/Cargo.toml index 606693d755c0..ee486b3c66dd 100644 --- a/node/core/pvf/Cargo.toml +++ b/node/core/pvf/Cargo.toml @@ -23,15 +23,15 @@ parity-scale-codec = { version = "2.3.1", default-features = false, features = [ polkadot-parachain = { path = "../../../parachain" } polkadot-core-primitives = { path = "../../../core-primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util"} -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" } diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index 0ad1b147c611..143d7b5dca9a 100644 --- a/node/core/runtime-api/Cargo.toml +++ b/node/core/runtime-api/Cargo.toml @@ -10,18 +10,18 @@ tracing = "0.1.31" memory-lru = "0.1.0" parity-util-mem = { version = "0.10.0", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/jaeger/Cargo.toml b/node/jaeger/Cargo.toml index 792cd9a4a9a6..d7a16098c190 100644 --- a/node/jaeger/Cargo.toml +++ b/node/jaeger/Cargo.toml @@ -12,8 +12,8 @@ lazy_static = "1.4" parking_lot = "0.12.0" polkadot-primitives = { path = "../../primitives" } polkadot-node-primitives = { path = "../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" log = "0.4.13" parity-scale-codec = { version = "2.3.1", default-features = false } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index e67741cbc768..8b72a4a6feac 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -27,7 +27,7 @@ parity-util-mem = { version = "0.10.0", default-features = false, features = ["j color-eyre = { version = "0.6.0", default-features = false } assert_matches = "1.5" async-trait = "0.1.52" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } clap = { version = "3.0", features = ["derive"] } futures = "0.3.21" futures-timer = "3.0.2" @@ -38,5 +38,5 @@ default = [] [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } diff --git a/node/metrics/Cargo.toml b/node/metrics/Cargo.toml index 9e53de291480..4c0ad72bad2f 100644 --- a/node/metrics/Cargo.toml +++ b/node/metrics/Cargo.toml @@ -13,11 +13,11 @@ tracing = "0.1.31" metered-channel = { path = "../metered-channel" } # Both `sc-service` and `sc-cli` are required by runtime metrics `logger_hook()`. -sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } codec = { package = "parity-scale-codec", version = "2.2.0" } primitives = { package = "polkadot-primitives", path = "../../primitives/" } bs58 = { version = "0.4.0", features = ["alloc"] } @@ -30,10 +30,10 @@ tempfile = "3.2.0" hyper = { version = "0.14.17", default-features = false, features = ["http1", "tcp"] } tokio = "1.16" polkadot-test-service = { path = "../test/service", features=["runtime-metrics"]} -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } prometheus-parse = {version = "0.2.2"} [features] diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index 1e7039f4fecf..83e628663767 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -15,7 +15,7 @@ futures = "0.3.21" tracing = "0.1.31" [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index 5b1b0da6fcfb..41e8d4d40195 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -14,8 +14,8 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" rand = "0.8.5" derive_more = "0.99.17" @@ -23,10 +23,10 @@ lru = "0.7.2" [dev-dependencies] polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" assert_matches = "1.4.0" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/availability-recovery/Cargo.toml b/node/network/availability-recovery/Cargo.toml index af11b5e8ed56..70756fefdab8 100644 --- a/node/network/availability-recovery/Cargo.toml +++ b/node/network/availability-recovery/Cargo.toml @@ -18,7 +18,7 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-network-protocol = { path = "../../network/protocol" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] assert_matches = "1.4.0" @@ -26,10 +26,10 @@ env_logger = "0.9.0" futures-timer = "3.0.2" log = "0.4.11" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-subsystem-test-helpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index 0f43527520a5..346a26353cb1 100644 --- a/node/network/bitfield-distribution/Cargo.toml +++ b/node/network/bitfield-distribution/Cargo.toml @@ -15,9 +15,9 @@ polkadot-node-network-protocol = { path = "../../network/protocol" } [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } maplit = "1.0.2" log = "0.4.13" env_logger = "0.9.0" diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index cbab02295637..4062d463b8a7 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -10,8 +10,8 @@ futures = "0.3.21" tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-overseer = { path = "../../overseer" } polkadot-node-network-protocol = { path = "../protocol" } @@ -21,7 +21,7 @@ parking_lot = "0.12.0" [dev-dependencies] assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index b8aca5a34e4f..21ec6620cbf4 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -12,9 +12,9 @@ futures-timer = "3" thiserror = "1.0.30" tracing = "0.1.31" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-network-protocol = { path = "../../network/protocol" } @@ -27,9 +27,9 @@ log = "0.4.13" env_logger = "0.9.0" assert_matches = "1.4.0" -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } parity-scale-codec = { version = "2.3.1", features = ["std"] } polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index 512c9a52b210..7c2f0436d6da 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -15,18 +15,18 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" lru = "0.7.2" [dev-dependencies] async-trait = "0.1.52" polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" assert_matches = "1.4.0" lazy_static = "1.4.0" diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index b23a90492bda..221f6de7bd2b 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -5,10 +5,10 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-network-protocol = { path = "../protocol" } polkadot-node-subsystem = { path = "../../subsystem" } @@ -22,9 +22,9 @@ rand_chacha = { version = "0.3.1", default-features = false } tracing = "0.1.31" [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index 87d121578cf0..a1bc6ac1f257 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -11,8 +11,8 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } strum = { version = "0.23", features = ["derive"] } derive_more = "0.99.17" futures = "0.3.21" diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index 399b3609b814..4a3a06a25a96 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -9,8 +9,8 @@ edition = "2018" futures = "0.3.21" tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } @@ -24,12 +24,12 @@ thiserror = "1.0.30" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index 0da6f15b9c48..4392b6997d6f 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" futures-timer = "3.0.2" parking_lot = "0.12.0" @@ -22,7 +22,7 @@ parity-util-mem = { version = ">= 0.10.1", default-features = false } [dev-dependencies] metered-channel = { path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } femme = "2.1.1" assert_matches = "1.4.0" diff --git a/node/primitives/Cargo.toml b/node/primitives/Cargo.toml index 8eda2b943c4e..96af76f07c4d 100644 --- a/node/primitives/Cargo.toml +++ b/node/primitives/Cargo.toml @@ -10,12 +10,12 @@ bounded-vec = "0.5" futures = "0.3.21" polkadot-primitives = { path = "../../primitives" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-parachain = { path = "../../parachain", default-features = false } schnorrkel = "0.9.1" thiserror = "1.0.30" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 2cb0a3f56a40..b06b59339e8b 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -6,59 +6,59 @@ edition = "2018" [dependencies] # Substrate Client -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -service = { package = "sc-service", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Primitives -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Pallets -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Other -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" } # External Crates futures = "0.3.21" diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index 23a8d3ba97cc..5a5408bc5984 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -12,11 +12,11 @@ parking_lot = "0.12.0" polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] polkadot-overseer = { path = "../overseer" } diff --git a/node/subsystem-types/Cargo.toml b/node/subsystem-types/Cargo.toml index b03f744cc9ac..a0e6586c3fd5 100644 --- a/node/subsystem-types/Cargo.toml +++ b/node/subsystem-types/Cargo.toml @@ -14,7 +14,7 @@ polkadot-node-network-protocol = { path = "../network/protocol" } polkadot-statement-table = { path = "../../statement-table" } polkadot-node-jaeger = { path = "../jaeger" } polkadot-overseer-gen = { path = "../overseer/overseer-gen" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } smallvec = "1.8.0" -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index a828f2bc32fe..7b2596a5ac25 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -26,9 +26,9 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-overseer = { path = "../overseer" } metered-channel = { path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] assert_matches = "1.4.0" diff --git a/node/test/client/Cargo.toml b/node/test/client/Cargo.toml index 615b26a7d681..e8f404ed870c 100644 --- a/node/test/client/Cargo.toml +++ b/node/test/client/Cargo.toml @@ -14,20 +14,20 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } # Substrate dependencies -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index 1bb5f6e3ed70..98aaf24bf5a6 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -27,40 +27,40 @@ test-runtime-constants = { path = "../../../runtime/test-runtime/constants" } polkadot-runtime-parachains = { path = "../../../runtime/parachains" } # Substrate dependencies -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "wasmtime" ] , branch = "na-epm-pub" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "wasmtime" ] } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } serde_json = "1.0.79" -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } tokio = { version = "1.16", features = ["macros"] } [features] diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index d238652abfb4..1cf1801f4a24 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -12,10 +12,10 @@ edition = "2018" parity-scale-codec = { version = "2.0.0", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.10.0", default-features = false, optional = true } scale-info = { version = "1.0", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } derive_more = "0.99.11" diff --git a/parachain/test-parachains/Cargo.toml b/parachain/test-parachains/Cargo.toml index d462ed7ffdcf..fc769e898dfb 100644 --- a/parachain/test-parachains/Cargo.toml +++ b/parachain/test-parachains/Cargo.toml @@ -13,7 +13,7 @@ adder = { package = "test-parachain-adder", path = "adder" } halt = { package = "test-parachain-halt", path = "halt" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index 7cbbf1e2a78a..781c27893584 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -9,15 +9,15 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/adder/collator/Cargo.toml b/parachain/test-parachains/adder/collator/Cargo.toml index dd7ee49a9694..4859d4655c7b 100644 --- a/parachain/test-parachains/adder/collator/Cargo.toml +++ b/parachain/test-parachains/adder/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } tokio = { version = "1.16", features = ["macros"] } diff --git a/parachain/test-parachains/halt/Cargo.toml b/parachain/test-parachains/halt/Cargo.toml index ccc591cfe182..a79f1773c7ef 100644 --- a/parachain/test-parachains/halt/Cargo.toml +++ b/parachain/test-parachains/halt/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" [dependencies] [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [ "std" ] diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 977a0f639e5c..faf41737c0f9 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -8,24 +8,24 @@ edition = "2018" serde = { version = "1.0.136", optional = true, features = ["derive"] } scale-info = { version = "1.0", default-features = false, features = ["bit-vec", "derive"] } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } hex-literal = "0.3.4" parity-util-mem = { version = "0.10.0", default-features = false, optional = true } diff --git a/primitives/test-helpers/Cargo.toml b/primitives/test-helpers/Cargo.toml index 86c5d0b622f8..61005169a87c 100644 --- a/primitives/test-helpers/Cargo.toml +++ b/primitives/test-helpers/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../" } diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 47d6a8e92e16..28ca97b49608 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -7,25 +7,25 @@ edition = "2018" [dependencies] jsonrpc-core = "18.0.0" polkadot-primitives = { path = "../primitives" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index a52f087daee2..da760b960c87 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -15,34 +15,34 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } libsecp256k1 = { version = "0.7.0", default-features = false } @@ -53,10 +53,10 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } trie-db = "0.23.1" serde_json = "1.0.79" libsecp256k1 = "0.7.0" diff --git a/runtime/common/slot_range_helper/Cargo.toml b/runtime/common/slot_range_helper/Cargo.toml index 0e9fbc836351..d728f7f7b1f4 100644 --- a/runtime/common/slot_range_helper/Cargo.toml +++ b/runtime/common/slot_range_helper/Cargo.toml @@ -8,8 +8,8 @@ edition = "2018" paste = "1.0" enumn = "0.1.3" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index f793c4796a36..3615191879e5 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -16,72 +16,72 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } kusama-runtime-constants = { package = "kusama-runtime-constants", path = "./constants", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-gilt = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -95,13 +95,13 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } separator = "0.4.1" serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml index 2cd69bdb9eb1..ab0f9e22645c 100644 --- a/runtime/kusama/constants/Cargo.toml +++ b/runtime/kusama/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/metrics/Cargo.toml b/runtime/metrics/Cargo.toml index 28126bd76211..14aefaa2626f 100644 --- a/runtime/metrics/Cargo.toml +++ b/runtime/metrics/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } -sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false} +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } parity-scale-codec = { version = "2.3.1", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index 2b91fc64ae96..028b749452d9 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -14,28 +14,28 @@ serde = { version = "1.0.136", features = [ "derive" ], optional = true } derive_more = "0.99.17" bitflags = "1.3.2" -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "na-epm-pub" } -sp-tracing = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-tracing = { version = "4.0.0-dev", branch = "master", git = "https://github.com/paritytech/substrate", default-features = false, optional = true } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } xcm = { package = "xcm", path = "../../xcm", default-features = false } xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false } @@ -49,11 +49,11 @@ polkadot-runtime-metrics = { path = "../metrics", default-features = false} [dev-dependencies] futures = "0.3.21" hex-literal = "0.3.4" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers"} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } thousands = "0.2.0" assert_matches = "1" diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index 1ea4d207a006..f8f5a5d915bb 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -16,68 +16,68 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-runtime-constants = { package = "polkadot-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -91,14 +91,14 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } trie-db = "0.23.1" serde_json = "1.0.79" separator = "0.4.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/polkadot/constants/Cargo.toml b/runtime/polkadot/constants/Cargo.toml index f8653338db8e..2743da8533a0 100644 --- a/runtime/polkadot/constants/Cargo.toml +++ b/runtime/polkadot/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index 21b6139df5cc..ac92aeeb2b51 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -13,51 +13,51 @@ serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" log = { version = "0.4.14", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } rococo-runtime-constants = { package = "rococo-runtime-constants", path = "./constants", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -81,11 +81,11 @@ pallet-bridge-grandpa = { path = "../../bridges/modules/grandpa", default-featur pallet-bridge-messages = { path = "../../bridges/modules/messages", default-features = false } # Benchmarking Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/rococo/constants/Cargo.toml b/runtime/rococo/constants/Cargo.toml index 6f32c851d5d8..aab5b507a6c3 100644 --- a/runtime/rococo/constants/Cargo.toml +++ b/runtime/rococo/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index 595137d15e2f..45b434f0baa5 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -15,45 +15,45 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } test-runtime-constants = { package = "test-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -67,12 +67,12 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/test-runtime/constants/Cargo.toml b/runtime/test-runtime/constants/Cargo.toml index 88ca4acf395a..820dcee5083e 100644 --- a/runtime/test-runtime/constants/Cargo.toml +++ b/runtime/test-runtime/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index 3d59ea6ccd01..37ad7429b4d0 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -15,70 +15,70 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } westend-runtime-constants = { package = "westend-runtime-constants", path = "./constants", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -93,12 +93,12 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/westend/constants/Cargo.toml b/runtime/westend/constants/Cargo.toml index 5dd5308c988d..9a104eadca88 100644 --- a/runtime/westend/constants/Cargo.toml +++ b/runtime/westend/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 4c5f808981fd..d4f95908775b 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" [dependencies] parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/utils/generate-bags/Cargo.toml b/utils/generate-bags/Cargo.toml index cf8dced17291..4cb2d82e3083 100644 --- a/utils/generate-bags/Cargo.toml +++ b/utils/generate-bags/Cargo.toml @@ -7,8 +7,8 @@ edition = "2018" [dependencies] clap = { version = "3.0", features = ["derive"] } -generate-bags = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +generate-bags = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } westend-runtime = { path = "../../runtime/westend" } kusama-runtime = { path = "../../runtime/kusama" } diff --git a/utils/remote-ext-tests/bags-list/Cargo.toml b/utils/remote-ext-tests/bags-list/Cargo.toml index 34a750a25eab..7af6644ed04d 100644 --- a/utils/remote-ext-tests/bags-list/Cargo.toml +++ b/utils/remote-ext-tests/bags-list/Cargo.toml @@ -12,10 +12,10 @@ polkadot-runtime-constants = { version = "0.9.17", path = "../../../runtime/polk kusama-runtime-constants = { version = "0.9.17", path = "../../../runtime/kusama/constants" } westend-runtime-constants = { version = "0.9.17", path = "../../../runtime/westend/constants" } -pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } clap = { version = "3.0", features = ["derive"] } log = "0.4.14" diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 29ceae35f495..301c53fead24 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -16,22 +16,22 @@ serde_json = "1.0" thiserror = "1.0.30" tokio = { version = "1.16", features = ["macros", "rt-multi-thread", "sync"] } -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } - -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } - -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } + +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } + +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } core-primitives = { package = "polkadot-core-primitives", path = "../../core-primitives" } @@ -43,4 +43,4 @@ westend-runtime = { path = "../../runtime/westend" } sub-tokens = { git = "https://github.com/paritytech/substrate-debug-kit", branch = "master" } [dev-dependencies] -sp-version = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/xcm/pallet-xcm-benchmarks/Cargo.toml b/xcm/pallet-xcm-benchmarks/Cargo.toml index 62cc848d2172..0cc3c4bb0202 100644 --- a/xcm/pallet-xcm-benchmarks/Cargo.toml +++ b/xcm/pallet-xcm-benchmarks/Cargo.toml @@ -10,21 +10,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } scale-info = { version = "1.0", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } -frame-system = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } -sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } -sp-std = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +frame-support = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-system = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +sp-runtime = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +sp-std = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } xcm-executor = { path = "../xcm-executor", default-features = false, features = ["runtime-benchmarks"] } -frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +frame-benchmarking = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } xcm = { path = "..", default-features = false, features = ["runtime-benchmarks"] } log = "0.4.0" [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } -pallet-assets = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } -sp-tracing = { git = "https://github.com/paritytech/substrate" , branch = "na-epm-pub" } +pallet-balances = { branch = "master", git = "https://github.com/paritytech/substrate" } +pallet-assets = { branch = "master", git = "https://github.com/paritytech/substrate" } +sp-core = { branch = "master", git = "https://github.com/paritytech/substrate" } +sp-io = { branch = "master", git = "https://github.com/paritytech/substrate" } +sp-tracing = { branch = "master", git = "https://github.com/paritytech/substrate" } xcm-builder = { path = "../xcm-builder" } xcm = { path = ".." } # temp diff --git a/xcm/pallet-xcm/Cargo.toml b/xcm/pallet-xcm/Cargo.toml index c5a8d894a5fb..b497f3a10f11 100644 --- a/xcm/pallet-xcm/Cargo.toml +++ b/xcm/pallet-xcm/Cargo.toml @@ -10,19 +10,19 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"] serde = { version = "1.0.136", optional = true, features = ["derive"] } log = { version = "0.4.14", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } xcm-builder = { path = "../xcm-builder" } polkadot-parachain = { path = "../../parachain" } diff --git a/xcm/xcm-builder/Cargo.toml b/xcm/xcm-builder/Cargo.toml index c8b114f21a45..36be7d2e41d5 100644 --- a/xcm/xcm-builder/Cargo.toml +++ b/xcm/xcm-builder/Cargo.toml @@ -10,21 +10,21 @@ parity-scale-codec = { version = "2.3.1", default-features = false, features = [ scale-info = { version = "1.0", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } log = { version = "0.4.0", default-features = false } # Polkadot dependencies polkadot-parachain = { path = "../../parachain", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-xcm = { path = "../pallet-xcm" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } [features] diff --git a/xcm/xcm-executor/Cargo.toml b/xcm/xcm-executor/Cargo.toml index e9f78eb1b89e..ac4f1fea5172 100644 --- a/xcm/xcm-executor/Cargo.toml +++ b/xcm/xcm-executor/Cargo.toml @@ -9,14 +9,14 @@ version = "0.9.17" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } log = { version = "0.4.14", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "na-epm-pub" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } [features] default = ["std"] diff --git a/xcm/xcm-executor/integration-tests/Cargo.toml b/xcm/xcm-executor/integration-tests/Cargo.toml index bb966421df50..89ad1713ab8d 100644 --- a/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/xcm/xcm-executor/integration-tests/Cargo.toml @@ -6,20 +6,20 @@ description = "Integration tests for the XCM Executor" version = "0.9.17" [dependencies] -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" pallet-xcm = { path = "../../pallet-xcm" } polkadot-test-client = { path = "../../../node/test/client" } polkadot-test-runtime = { path = "../../../runtime/test-runtime" } polkadot-test-service = { path = "../../../node/test/service" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "na-epm-pub" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../..", default-features = false } xcm-executor = { path = ".." } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/xcm/xcm-simulator/Cargo.toml b/xcm/xcm-simulator/Cargo.toml index 87f7c919da48..e3904603b90e 100644 --- a/xcm/xcm-simulator/Cargo.toml +++ b/xcm/xcm-simulator/Cargo.toml @@ -9,9 +9,9 @@ edition = "2018" codec = { package = "parity-scale-codec", version = "2.0.0" } paste = "1.0.6" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../" } xcm-executor = { path = "../xcm-executor" } diff --git a/xcm/xcm-simulator/example/Cargo.toml b/xcm/xcm-simulator/example/Cargo.toml index f893876fc7cc..e4348c838df4 100644 --- a/xcm/xcm-simulator/example/Cargo.toml +++ b/xcm/xcm-simulator/example/Cargo.toml @@ -9,13 +9,13 @@ edition = "2018" codec = { package = "parity-scale-codec", version = "2.0.0" } scale-info = { version = "1.0", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../../" } xcm-simulator = { path = "../" } diff --git a/xcm/xcm-simulator/fuzzer/Cargo.toml b/xcm/xcm-simulator/fuzzer/Cargo.toml index 5328bbbda121..c6b0552d0768 100644 --- a/xcm/xcm-simulator/fuzzer/Cargo.toml +++ b/xcm/xcm-simulator/fuzzer/Cargo.toml @@ -10,13 +10,13 @@ codec = { package = "parity-scale-codec", version = "2.0.0" } honggfuzz = "0.5.54" scale-info = { version = "1.0", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "na-epm-pub" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../../" } xcm-simulator = { path = "../" } From 359a469a08a8b9226218da7f03a6e335be61b50a Mon Sep 17 00:00:00 2001 From: Niklas Date: Tue, 22 Feb 2022 15:16:02 +0100 Subject: [PATCH 17/27] update substrate --- Cargo.lock | 326 ++++++++++++++++++++++++++--------------------------- 1 file changed, 163 insertions(+), 163 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0dc2f9de533a..23ddc650122d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -439,7 +439,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "beefy-primitives", "fnv", @@ -468,7 +468,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -491,12 +491,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "scale-info", @@ -1889,7 +1889,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", ] @@ -1907,7 +1907,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -1929,7 +1929,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "Inflector", "chrono", @@ -1956,7 +1956,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -1970,7 +1970,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "bitflags", "frame-metadata", @@ -2027,7 +2027,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2039,7 +2039,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.2", @@ -2051,7 +2051,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "proc-macro2", "quote", @@ -2061,7 +2061,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2084,7 +2084,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -2095,7 +2095,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "log", @@ -2112,7 +2112,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -2127,7 +2127,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "sp-api", @@ -2136,7 +2136,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "sp-api", @@ -2332,7 +2332,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "chrono", "frame-election-provider-support", @@ -4752,7 +4752,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -4766,7 +4766,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -4782,7 +4782,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -4797,7 +4797,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -4821,7 +4821,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4841,7 +4841,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4861,7 +4861,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -4876,7 +4876,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "beefy-primitives", "frame-support", @@ -4892,7 +4892,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4917,7 +4917,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5001,7 +5001,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5018,7 +5018,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5034,7 +5034,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5057,7 +5057,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5075,7 +5075,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5090,7 +5090,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5113,7 +5113,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5129,7 +5129,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5149,7 +5149,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5166,7 +5166,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5183,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -5217,7 +5217,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5234,7 +5234,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5249,7 +5249,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -5263,7 +5263,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -5280,7 +5280,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5303,7 +5303,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5319,7 +5319,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5334,7 +5334,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -5348,7 +5348,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5364,7 +5364,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -5385,7 +5385,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5401,7 +5401,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -5415,7 +5415,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5438,7 +5438,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -5449,7 +5449,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "log", "sp-arithmetic", @@ -5458,7 +5458,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -5472,7 +5472,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5490,7 +5490,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5509,7 +5509,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-support", "frame-system", @@ -5526,7 +5526,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5543,7 +5543,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5554,7 +5554,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5571,7 +5571,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5587,7 +5587,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-benchmarking", "frame-support", @@ -7990,7 +7990,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "env_logger 0.9.0", "jsonrpsee 0.8.0", @@ -8337,7 +8337,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "log", "sp-core", @@ -8348,7 +8348,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "futures 0.3.21", @@ -8375,7 +8375,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8398,7 +8398,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8414,7 +8414,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8431,7 +8431,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -8442,7 +8442,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "chrono", "clap", @@ -8480,7 +8480,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "fnv", "futures 0.3.21", @@ -8508,7 +8508,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "hash-db", "kvdb", @@ -8533,7 +8533,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "futures 0.3.21", @@ -8557,7 +8557,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "fork-tree", @@ -8600,7 +8600,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -8624,7 +8624,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8637,7 +8637,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "futures 0.3.21", @@ -8662,7 +8662,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "sc-client-api", "sp-authorship", @@ -8673,11 +8673,10 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "lazy_static", "libsecp256k1", - "log", "lru 0.6.6", "parity-scale-codec", "parking_lot 0.11.2", @@ -8695,13 +8694,14 @@ dependencies = [ "sp-trie", "sp-version", "sp-wasm-interface", + "tracing", "wasmi", ] [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "environmental", "parity-scale-codec", @@ -8718,7 +8718,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "log", "parity-scale-codec", @@ -8734,7 +8734,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8752,7 +8752,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "ahash", "async-trait", @@ -8791,7 +8791,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -8815,7 +8815,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "ansi_term", "futures 0.3.21", @@ -8832,7 +8832,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "hex", @@ -8847,7 +8847,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-std", "async-trait", @@ -8897,7 +8897,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "ahash", "futures 0.3.21", @@ -8914,7 +8914,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "bytes 1.1.0", "fnv", @@ -8942,7 +8942,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "libp2p", @@ -8955,7 +8955,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8964,7 +8964,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "hash-db", @@ -8995,7 +8995,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9020,7 +9020,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "directories", @@ -9101,7 +9101,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "log", "parity-scale-codec", @@ -9115,7 +9115,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -9136,7 +9136,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "chrono", "futures 0.3.21", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "ansi_term", "atty", @@ -9185,7 +9185,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -9196,7 +9196,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9223,7 +9223,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "log", @@ -9236,7 +9236,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9685,7 +9685,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "hash-db", "log", @@ -9702,7 +9702,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "blake2 0.10.2", "proc-macro-crate 1.1.2", @@ -9714,7 +9714,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "scale-info", @@ -9727,7 +9727,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "integer-sqrt", "num-traits", @@ -9742,7 +9742,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "scale-info", @@ -9755,7 +9755,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "parity-scale-codec", @@ -9767,7 +9767,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "sp-api", @@ -9779,7 +9779,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "log", @@ -9797,7 +9797,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "futures 0.3.21", @@ -9816,7 +9816,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "merlin", @@ -9839,7 +9839,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "scale-info", @@ -9851,7 +9851,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -9863,7 +9863,7 @@ dependencies = [ [[package]] name = "sp-core" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "base58", "bitflags", @@ -9908,7 +9908,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "blake2 0.10.2", "byteorder", @@ -9922,7 +9922,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "proc-macro2", "quote", @@ -9933,7 +9933,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "kvdb", "parking_lot 0.11.2", @@ -9942,7 +9942,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "proc-macro2", "quote", @@ -9952,7 +9952,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "environmental", "parity-scale-codec", @@ -9963,7 +9963,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "finality-grandpa", "log", @@ -9981,7 +9981,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9995,7 +9995,7 @@ dependencies = [ [[package]] name = "sp-io" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "hash-db", @@ -10019,7 +10019,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "lazy_static", "sp-core", @@ -10030,7 +10030,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "futures 0.3.21", @@ -10047,7 +10047,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "thiserror", "zstd", @@ -10056,7 +10056,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "scale-info", @@ -10071,7 +10071,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -10082,7 +10082,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "sp-api", "sp-core", @@ -10092,7 +10092,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "backtrace", "lazy_static", @@ -10102,7 +10102,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "rustc-hash", "serde", @@ -10112,7 +10112,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "either", "hash256-std-hasher", @@ -10134,7 +10134,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10151,7 +10151,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "Inflector", "proc-macro-crate 1.1.2", @@ -10163,7 +10163,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "serde", "serde_json", @@ -10172,7 +10172,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "scale-info", @@ -10186,7 +10186,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "scale-info", @@ -10197,7 +10197,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "hash-db", "log", @@ -10220,12 +10220,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" [[package]] name = "sp-storage" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10238,7 +10238,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "log", "sp-core", @@ -10251,7 +10251,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "futures-timer", @@ -10267,7 +10267,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "sp-std", @@ -10279,7 +10279,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "sp-api", "sp-runtime", @@ -10288,7 +10288,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "log", @@ -10304,7 +10304,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "hash-db", "memory-db", @@ -10319,7 +10319,7 @@ dependencies = [ [[package]] name = "sp-version" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10336,7 +10336,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10347,7 +10347,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "impl-trait-for-tuples", "log", @@ -10515,7 +10515,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "platforms", ] @@ -10523,7 +10523,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -10545,7 +10545,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-std", "futures-util", @@ -10559,7 +10559,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "async-trait", "futures 0.3.21", @@ -10585,7 +10585,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -10595,7 +10595,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "proc-macro-crate 1.1.2", "proc-macro2", @@ -10606,7 +10606,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "ansi_term", "build-helper", @@ -11201,7 +11201,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5cdbaa3e1caac94fa3ede30f9fb08fd1f031b3d4" +source = "git+https://github.com/paritytech/substrate?branch=master#8bb8eff0376ff0706f99dd43bae035da8b7827c5" dependencies = [ "clap", "jsonrpsee 0.4.1", From fabfd6e75d8ec8449c049b7935f5a0ffea053ab4 Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 25 Feb 2022 12:00:26 +0100 Subject: [PATCH 18/27] tokio spawn on concurrent stuff --- utils/staking-miner/src/monitor.rs | 77 +++++++++++++++++++++++------- 1 file changed, 60 insertions(+), 17 deletions(-) diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index ca9db249e7f2..f5ef57e2ac49 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -81,8 +81,7 @@ where Ok(()) } -/// Queries the chain for the best solution and checks whether the computed score -/// is better than best known. +/// Reads all current solutions and then takes action according to the `SubmissionStrategy`. async fn ensure_no_better_solution( rpc: &SharedRpcClient, at: Hash, @@ -114,9 +113,8 @@ async fn ensure_no_better_solution( Ok(()) } -/// Queries the chain for the best solution and checks whether the computed score -/// is better than best known. -async fn ensure_no_better_signed_solution( +/// Checks whether it exist a ready solution. +async fn ensure_no_ready_solution( rpc: &SharedRpcClient, at: Hash, score: sp_npos_elections::ElectionScore, @@ -206,22 +204,55 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { config: MonitorConfig, ) { + async fn flatten(handle: tokio::task::JoinHandle>) -> Result { + match handle.await { + Ok(Ok(result)) => Ok(result), + Ok(Err(err)) => Err(err), + Err(err) => panic!("tokio spawn task failed; kill task: {:?}", err), + } + } + let hash = at.hash(); log::trace!(target: LOG_TARGET, "new event at #{:?} ({:?})", at.number, hash); - // This is just concurrent => on the same thread - if let Err(err) = tokio::try_join!( - ensure_signed_phase::(&rpc, hash), - ensure_no_previous_solution::(&rpc, hash, &signer.account), - crate::check_versions::(&rpc), - ) { + let rpc1 = rpc.clone(); + let rpc2 = rpc.clone(); + let rpc3 = rpc.clone(); + let account = signer.account.clone(); + + let signed_phase_fut = tokio::spawn(async move { + ensure_signed_phase::(&rpc1, hash).await + }); + + let no_prev_sol_fut = tokio::spawn(async move { + ensure_no_previous_solution::(&rpc2, hash, &account).await + }); + + let check_version_fut = tokio::spawn(async move { + crate::check_versions::(&rpc3).await + }); + + // Run the calls concurrently. + let res = tokio::try_join!( + flatten(signed_phase_fut), + flatten(no_prev_sol_fut), + flatten(check_version_fut), + ); + + if let Err(err) = res { match err { Error::VersionMismatch => { let _ = tx.send(Error::VersionMismatch.into()); } - Error::IncorrectPhase => log::debug!(target: LOG_TARGET, "phase closed, not interested in this block at all."), - Error::AlreadySubmitted => log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."), - err => log::debug!(target: LOG_TARGET, "Error: {:?} when performed initial checks", err), + Error::IncorrectPhase => { + log::debug!(target: LOG_TARGET, "phase closed, not interested in this block at all."); + } + Error::AlreadySubmitted => { + log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."); + } + err => { + log::debug!(target: LOG_TARGET, "Error: {:?} when performed initial checks", err); + } } return; } @@ -276,10 +307,22 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let extrinsic = ext.execute_with(|| create_uxt(raw_solution, witness, signer.clone(), nonce, tip, era)); let bytes = sp_core::Bytes(extrinsic.encode()); - // This is just concurrent => on the same thread + + let rpc1 = rpc.clone(); + let rpc2 = rpc.clone(); + + let ensure_no_better_fut = tokio::spawn(async move { + ensure_no_better_solution::(&rpc1, hash, score, config.submission_strategy).await + }); + + let ensure_no_signed_fut = tokio::spawn(async move { + ensure_no_ready_solution::(&rpc2, hash, score).await + }); + + // Run the calls concurrently. if tokio::try_join!( - ensure_no_better_solution::(&rpc, hash, score, config.submission_strategy), - ensure_no_better_signed_solution::(&rpc, hash, score) + flatten(ensure_no_better_fut), + flatten(ensure_no_signed_fut), ).is_err() { return; } From c633e44a2a1837b4a07f9c77f880b2ee32dc1aea Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 25 Feb 2022 16:14:47 +0100 Subject: [PATCH 19/27] cleanup --- utils/staking-miner/src/main.rs | 2 +- utils/staking-miner/src/monitor.rs | 51 +++++++++++------------------- 2 files changed, 19 insertions(+), 34 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 9375ef8f958e..079a7bafc127 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -246,7 +246,7 @@ enum Error { IncorrectPhase, AlreadySubmitted, VersionMismatch, - AlreadyExistSolutionWithBetterScore, + BetterScoreExist, } impl From for Error { diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index f5ef57e2ac49..4d664959f5fb 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -81,7 +81,7 @@ where Ok(()) } -/// Reads all current solutions and then takes action according to the `SubmissionStrategy`. +/// Reads all current solutions and checks according to the `SubmissionStrategy`. async fn ensure_no_better_solution( rpc: &SharedRpcClient, at: Hash, @@ -106,7 +106,7 @@ async fn ensure_no_better_solution( // BTreeMap is ordered, take last to get the max score. if let Some(curr_max_score) = indices.into_iter().last().map(|(s, _)| s) { if !score.strict_threshold_better(curr_max_score, epsilon) { - return Err(Error::AlreadyExistSolutionWithBetterScore) + return Err(Error::BetterScoreExist) } } @@ -114,6 +114,7 @@ async fn ensure_no_better_solution( } /// Checks whether it exist a ready solution. +/// This will be set in the end of signed phase. async fn ensure_no_ready_solution( rpc: &SharedRpcClient, at: Hash, @@ -129,7 +130,7 @@ async fn ensure_no_ready_solution( if score.strict_threshold_better(best_score, Perbill::zero()) { Ok(()) } else { - Err(Error::AlreadyExistSolutionWithBetterScore) + Err(Error::BetterScoreExist) } } @@ -204,7 +205,9 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { config: MonitorConfig, ) { - async fn flatten(handle: tokio::task::JoinHandle>) -> Result { + async fn flatten( + handle: tokio::task::JoinHandle> + ) -> Result { match handle.await { Ok(Ok(result)) => Ok(result), Ok(Err(err)) => Err(err), @@ -218,6 +221,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let rpc1 = rpc.clone(); let rpc2 = rpc.clone(); let rpc3 = rpc.clone(); + let rpc4 = rpc.clone(); let account = signer.account.clone(); let signed_phase_fut = tokio::spawn(async move { @@ -232,40 +236,22 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { crate::check_versions::(&rpc3).await }); - // Run the calls concurrently. + let ext_fut = tokio::spawn(async move { + crate::create_election_ext::(rpc4, Some(hash), vec![]).await + }); + + // Run the calls concurrently and return once all has completed or any failed. let res = tokio::try_join!( flatten(signed_phase_fut), flatten(no_prev_sol_fut), flatten(check_version_fut), + flatten(ext_fut), ); - if let Err(err) = res { - match err { - Error::VersionMismatch => { - let _ = tx.send(Error::VersionMismatch.into()); - } - Error::IncorrectPhase => { - log::debug!(target: LOG_TARGET, "phase closed, not interested in this block at all."); - } - Error::AlreadySubmitted => { - log::debug!(target: LOG_TARGET, "We already have a solution in this phase, skipping."); - } - err => { - log::debug!(target: LOG_TARGET, "Error: {:?} when performed initial checks", err); - } - } - return; - } - - // grab an externalities without staking, just the election snapshot. - let mut ext = match crate::create_election_ext::( - rpc.clone(), - Some(hash), - vec![], - ).await { - Ok(ext) => ext, + let mut ext = match res { + Ok((_, _, _, ext)) => ext, Err(err) => { - let _ = tx.send(err); + log::debug!(target: LOG_TARGET, "Skipping block {}; error: {}", at.number, err); return; } }; @@ -307,7 +293,6 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let extrinsic = ext.execute_with(|| create_uxt(raw_solution, witness, signer.clone(), nonce, tip, era)); let bytes = sp_core::Bytes(extrinsic.encode()); - let rpc1 = rpc.clone(); let rpc2 = rpc.clone(); @@ -319,7 +304,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { ensure_no_ready_solution::(&rpc2, hash, score).await }); - // Run the calls concurrently. + // Run the calls concurrently and return once all has completed or any failed. if tokio::try_join!( flatten(ensure_no_better_fut), flatten(ensure_no_signed_fut), From 2e638d574adadca77f74e5586f5aad2443825044 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Fri, 25 Feb 2022 16:25:34 +0100 Subject: [PATCH 20/27] Update utils/staking-miner/src/monitor.rs --- utils/staking-miner/src/monitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 4d664959f5fb..d4f2854c4c56 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -240,7 +240,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { crate::create_election_ext::(rpc4, Some(hash), vec![]).await }); - // Run the calls concurrently and return once all has completed or any failed. + // Run the calls in parallel and return once all has completed or any failed. let res = tokio::try_join!( flatten(signed_phase_fut), flatten(no_prev_sol_fut), From 5946494211c512953200848916d3cf64a7d2609c Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Fri, 25 Feb 2022 16:27:01 +0100 Subject: [PATCH 21/27] Update utils/staking-miner/src/monitor.rs --- utils/staking-miner/src/monitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index d4f2854c4c56..cdc8800fdb30 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -304,7 +304,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { ensure_no_ready_solution::(&rpc2, hash, score).await }); - // Run the calls concurrently and return once all has completed or any failed. + // Run the calls in parallel and return once all has completed or any failed. if tokio::try_join!( flatten(ensure_no_better_fut), flatten(ensure_no_signed_fut), From 0d8aca776ec398a7e5c9947c0c006e2c1ed31051 Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 25 Feb 2022 16:50:48 +0100 Subject: [PATCH 22/27] more cleanup --- utils/staking-miner/src/main.rs | 2 +- utils/staking-miner/src/monitor.rs | 22 +++++++++++++--------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 079a7bafc127..aac352960aaa 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -317,7 +317,7 @@ enum SubmissionStrategy { /// Possible options: /// * --submission-strategy if-leading: only submit if leading /// * --submission-strategy always: always submit -/// * --submission-strategy "percent-better ": submit if submission is `n` percent better. (n > 100 has not effect) +/// * --submission-strategy "percent-better ": submit if submission is `n` percent better. /// impl FromStr for SubmissionStrategy { type Err = String; diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 4d664959f5fb..6f9c49203428 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -81,7 +81,7 @@ where Ok(()) } -/// Reads all current solutions and checks according to the `SubmissionStrategy`. +/// Reads all current solutions and checks the scores according to the `SubmissionStrategy`. async fn ensure_no_better_solution( rpc: &SharedRpcClient, at: Hash, @@ -113,21 +113,25 @@ async fn ensure_no_better_solution( Ok(()) } -/// Checks whether it exist a ready solution. -/// This will be set in the end of signed phase. -async fn ensure_no_ready_solution( +/// Checks whether the score is better than checked solution on chain. +/// The actual execution strategy is ignored because this is checked. +/// +/// The checked score is set in the end of the signed phase. +async fn ensure_better_than_ready_solution( rpc: &SharedRpcClient, at: Hash, score: sp_npos_elections::ElectionScore, ) -> Result<(), Error> { let key = StorageKey(EPM::QueuedSolution::::hashed_key().to_vec()); - let best_score = rpc + let score_is_better = rpc .get_storage_and_decode::>(&key, Some(at)) .await .map_err::, _>(Into::into)? - .map(|s| s.score) - .unwrap_or_default(); - if score.strict_threshold_better(best_score, Perbill::zero()) { + .map_or(true, |ready_solution| { + score.strict_threshold_better(ready_solution.score, Perbill::zero()) + }); + + if score_is_better { Ok(()) } else { Err(Error::BetterScoreExist) @@ -301,7 +305,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { }); let ensure_no_signed_fut = tokio::spawn(async move { - ensure_no_ready_solution::(&rpc2, hash, score).await + ensure_better_than_ready_solution::(&rpc2, hash, score).await }); // Run the calls concurrently and return once all has completed or any failed. From deeee6059ecd1e218410cc40a7adfda78213bd82 Mon Sep 17 00:00:00 2001 From: Niklas Date: Sat, 26 Feb 2022 00:12:29 +0100 Subject: [PATCH 23/27] fix nits --- utils/staking-miner/src/main.rs | 2 +- utils/staking-miner/src/monitor.rs | 19 ++++++++++--------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index aac352960aaa..527df5278a71 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -629,7 +629,7 @@ async fn main() { log::info!(target: LOG_TARGET, "connected to chain {:?}", chain); any_runtime_unit! { - check_versions::(&rpc).await + check_versions::(&rpc).await.expect("Runtime version is invalid, terminating") }; let signer_account = any_runtime! { diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 3befc7e54193..35e0c1f68c61 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -222,10 +222,16 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let hash = at.hash(); log::trace!(target: LOG_TARGET, "new event at #{:?} ({:?})", at.number, hash); + // block on this because if this fails there is no way to recover from + // that error i.e, upgrade/downgrade required. + if let Err(err) = crate::check_versions::(&rpc).await { + let _ = tx.send(err.into()); + return; + } + let rpc1 = rpc.clone(); let rpc2 = rpc.clone(); let rpc3 = rpc.clone(); - let rpc4 = rpc.clone(); let account = signer.account.clone(); let signed_phase_fut = tokio::spawn(async move { @@ -236,26 +242,21 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { ensure_no_previous_solution::(&rpc2, hash, &account).await }); - let check_version_fut = tokio::spawn(async move { - crate::check_versions::(&rpc3).await - }); - let ext_fut = tokio::spawn(async move { - crate::create_election_ext::(rpc4, Some(hash), vec![]).await + crate::create_election_ext::(rpc3, Some(hash), vec![]).await }); // Run the calls in parallel and return once all has completed or any failed. let res = tokio::try_join!( flatten(signed_phase_fut), flatten(no_prev_sol_fut), - flatten(check_version_fut), flatten(ext_fut), ); let mut ext = match res { - Ok((_, _, _, ext)) => ext, + Ok((_, _, ext)) => ext, Err(err) => { - log::debug!(target: LOG_TARGET, "Skipping block {}; error: {}", at.number, err); + log::debug!(target: LOG_TARGET, "Skipping block {}; {}", at.number, err); return; } }; From e42aca8781881b3dbb36bd7a156767f4a09cb75d Mon Sep 17 00:00:00 2001 From: Niklas Date: Tue, 1 Mar 2022 10:54:54 +0100 Subject: [PATCH 24/27] address grumbles --- utils/staking-miner/src/main.rs | 4 ++-- utils/staking-miner/src/monitor.rs | 33 ++++-------------------------- 2 files changed, 6 insertions(+), 31 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 527df5278a71..4f3b2a2cda07 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -246,7 +246,7 @@ enum Error { IncorrectPhase, AlreadySubmitted, VersionMismatch, - BetterScoreExist, + StrategyNotSatisfied, } impl From for Error { @@ -629,7 +629,7 @@ async fn main() { log::info!(target: LOG_TARGET, "connected to chain {:?}", chain); any_runtime_unit! { - check_versions::(&rpc).await.expect("Runtime version is invalid, terminating") + check_versions::(&rpc).await }; let signer_account = any_runtime! { diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 35e0c1f68c61..3df4815503a3 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -106,38 +106,13 @@ async fn ensure_no_better_solution( // BTreeMap is ordered, take last to get the max score. if let Some(curr_max_score) = indices.into_iter().last().map(|(s, _)| s) { if !score.strict_threshold_better(curr_max_score, epsilon) { - return Err(Error::BetterScoreExist) + return Err(Error::StrategyNotSatisfied) } } Ok(()) } -/// Checks whether the score is better than checked solution on chain. -/// The actual execution strategy is ignored because this is checked. -/// -/// The checked score is set in the end of the signed phase. -async fn ensure_better_than_ready_solution( - rpc: &SharedRpcClient, - at: Hash, - score: sp_npos_elections::ElectionScore, -) -> Result<(), Error> { - let key = StorageKey(EPM::QueuedSolution::::hashed_key().to_vec()); - let score_is_better = rpc - .get_storage_and_decode::>(&key, Some(at)) - .await - .map_err::, _>(Into::into)? - .map_or(true, |ready_solution| { - score.strict_threshold_better(ready_solution.score, Perbill::zero()) - }); - - if score_is_better { - Ok(()) - } else { - Err(Error::BetterScoreExist) - } -} - macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { /// The monitor command. @@ -305,14 +280,14 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { ensure_no_better_solution::(&rpc1, hash, score, config.submission_strategy).await }); - let ensure_no_signed_fut = tokio::spawn(async move { - ensure_better_than_ready_solution::(&rpc2, hash, score).await + let ensure_signed_phase_fut = tokio::spawn(async move { + ensure_signed_phase::(&rpc2, hash).await }); // Run the calls in parallel and return once all has completed or any failed. if tokio::try_join!( flatten(ensure_no_better_fut), - flatten(ensure_no_signed_fut), + flatten(ensure_signed_phase_fut), ).is_err() { return; } From 19fc667665ce5eb1021563e259436239416151e3 Mon Sep 17 00:00:00 2001 From: Niklas Date: Tue, 1 Mar 2022 20:06:07 +0100 Subject: [PATCH 25/27] only run batch reqs when signed phase --- utils/staking-miner/src/monitor.rs | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 3df4815503a3..b88ead1fdf80 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -206,7 +206,6 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { let rpc1 = rpc.clone(); let rpc2 = rpc.clone(); - let rpc3 = rpc.clone(); let account = signer.account.clone(); let signed_phase_fut = tokio::spawn(async move { @@ -217,19 +216,14 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { ensure_no_previous_solution::(&rpc2, hash, &account).await }); - let ext_fut = tokio::spawn(async move { - crate::create_election_ext::(rpc3, Some(hash), vec![]).await - }); - // Run the calls in parallel and return once all has completed or any failed. - let res = tokio::try_join!( - flatten(signed_phase_fut), - flatten(no_prev_sol_fut), - flatten(ext_fut), - ); + if let Err(err) = tokio::try_join!(flatten(signed_phase_fut), flatten(no_prev_sol_fut)) { + log::debug!(target: LOG_TARGET, "Skipping block {}; {}", at.number, err); + return; + } - let mut ext = match res { - Ok((_, _, ext)) => ext, + let mut ext = match crate::create_election_ext::(rpc.clone(), Some(hash), vec![]).await { + Ok(ext) => ext, Err(err) => { log::debug!(target: LOG_TARGET, "Skipping block {}; {}", at.number, err); return; From 75d96985bff5d56b6e92585776fc6c8b7fcd7d5e Mon Sep 17 00:00:00 2001 From: Niklas Date: Wed, 2 Mar 2022 00:37:32 +0100 Subject: [PATCH 26/27] better help menu for submission strategy CLI --- utils/staking-miner/src/main.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 4f3b2a2cda07..80ba164d3747 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -359,6 +359,14 @@ struct MonitorConfig { solver: Solvers, /// Submission strategy to use. + /// + /// Possible options: + /// + /// `--submission-strategy if-leading`: only submit if leading. + /// + /// `--submission-strategy always`: always submit. + /// + /// `--submission-strategy "percent-better "`: submit if the submission is `n` percent better. #[clap(long, parse(try_from_str), default_value = "if-leading")] submission_strategy: SubmissionStrategy, } From 35f26ff3c5c4f52c8c4279442dd1c6e5da9ed956 Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 4 Mar 2022 10:02:35 +0100 Subject: [PATCH 27/27] add tests for submission strategy --- utils/staking-miner/src/main.rs | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 6610d1a6e98d..b63ce3eb168a 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -302,7 +302,9 @@ enum Solver { }, } +/// Submission strategy to use. #[derive(Debug, Copy, Clone)] +#[cfg_attr(test, derive(PartialEq))] enum SubmissionStrategy { // Only submit if at the time, we are the best. IfLeading, @@ -324,6 +326,8 @@ impl FromStr for SubmissionStrategy { type Err = String; fn from_str(s: &str) -> Result { + let s = s.trim(); + let res = if s == "if-leading" { Self::IfLeading } else if s == "always" { @@ -716,7 +720,8 @@ mod tests { seed_or_path: "//Alice".to_string(), command: Command::Monitor(MonitorConfig { listen: "head".to_string(), - solver: Solver::SeqPhragmen { iterations: 10 } + solver: Solver::SeqPhragmen { iterations: 10 }, + submission_strategy: SubmissionStrategy::IfLeading, }), } ); @@ -778,4 +783,16 @@ mod tests { } ); } + + #[test] + fn submission_strategy_from_str_works() { + use std::str::FromStr; + + assert_eq!(SubmissionStrategy::from_str("if-leading"), Ok(SubmissionStrategy::IfLeading)); + assert_eq!(SubmissionStrategy::from_str("always"), Ok(SubmissionStrategy::Always)); + assert_eq!( + SubmissionStrategy::from_str(" percent-better 99 "), + Ok(SubmissionStrategy::ClaimBetterThan(Perbill::from_percent(99))) + ); + } }