Update to latest Substrate & Polkadot and also move cli crate (#365)

This commit is contained in:
Bastian Köcher
2021-03-12 14:39:58 +01:00
committed by GitHub
parent cb9d1019c4
commit 00bc5cd2da
6 changed files with 200 additions and 228 deletions
Generated
+196 -224
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1,6 +1,6 @@
[workspace]
members = [
"cli",
"client/cli",
"client/consensus/common",
"client/consensus/relay-chain",
"client/network",
+1 -1
View File
@@ -1,5 +1,5 @@
[package]
name = "cumulus-cli"
name = "cumulus-client-cli"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
+1 -1
View File
@@ -56,7 +56,7 @@ sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "maste
jsonrpc-core = "15.1.0"
# Cumulus dependencies
cumulus-cli = { path = "../cli" }
cumulus-client-cli = { path = "../client/cli" }
cumulus-client-consensus-relay-chain = { path = "../client/consensus/relay-chain" }
cumulus-client-collator = { path = "../client/collator" }
cumulus-client-service = { path = "../client/service" }
+1 -1
View File
@@ -46,7 +46,7 @@ pub enum Subcommand {
ImportBlocks(sc_cli::ImportBlocksCmd),
/// Remove the whole chain.
PurgeChain(cumulus_cli::PurgeChainCmd),
PurgeChain(cumulus_client_cli::PurgeChainCmd),
/// Revert the chain to a previous state.
Revert(sc_cli::RevertCmd),