Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2949849
Initial commit
cecton Jun 15, 2020
8672ca5
Change branch
cecton Jun 15, 2020
b3eed66
WIP
cecton Jun 19, 2020
e960f56
WIP
cecton Jun 22, 2020
54f9db5
WIP
cecton Jun 22, 2020
bb244ab
WIP
cecton Jun 23, 2020
b32f136
CLEANUP
cecton Jun 23, 2020
98479fd
WIP
cecton Jun 23, 2020
3342c2e
WIP
cecton Jun 23, 2020
cbc7479
WIP
cecton Jun 26, 2020
4dc2222
WIP
cecton Jun 30, 2020
614bfaf
WIP
cecton Jun 30, 2020
24eced7
WIP
cecton Jul 1, 2020
f163df5
Merge remote-tracking branch 'origin/master' into cecton-fix-int-test-3
cecton Jul 1, 2020
d00411a
Switch substrate branch to cumulus-branch
cecton Jul 1, 2020
1ee7240
WIP
cecton Jul 1, 2020
eb996e0
WIP
cecton Jul 2, 2020
4278565
change branch
cecton Jul 2, 2020
d8b2855
adapt code
cecton Jul 2, 2020
ea8e3f0
Merge commit 82db23f2ed78bfd1f9829563a1cfcb918215474d (conflicts)
cecton Jul 9, 2020
51183c9
Merge commit 5cac590a4b13004df5eec8dbe9a3c24f6d21a15e (no conflict)
cecton Jul 9, 2020
6ad5d6b
Merge commit 416c97030c08eb46dfe1372e408e0b23a66183a0 (conflicts)
cecton Jul 9, 2020
87650dd
Merge commit 03205eb60104499eba0634f8a61d707326d03f86 (conflicts)
cecton Jul 9, 2020
0ab83a5
adapt code
cecton Jul 9, 2020
b405a22
Update branches
cecton Jul 9, 2020
9b4a31b
adapt code
cecton Jul 9, 2020
eaaf7a9
CLEANUP
cecton Jul 10, 2020
d186bfb
replace asyncstd by tokio
cecton Jul 10, 2020
533b879
CLEANUP
cecton Jul 10, 2020
aaef29d
CLEANUP
cecton Jul 10, 2020
712f428
CLEANUP
cecton Jul 10, 2020
2deb133
CLEANUP
cecton Jul 10, 2020
8c16c1b
fmt
cecton Jul 10, 2020
ea1ff8e
CLEANUP
cecton Jul 10, 2020
792faca
CLEANUP
cecton Jul 10, 2020
325a217
Applied suggestion and added prefix for debugging & cleanup
cecton Jul 14, 2020
3016f8d
Revert branch change
cecton Jul 23, 2020
7f840ff
Adapt code to current substrate
cecton Jul 23, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
526 changes: 227 additions & 299 deletions Cargo.lock

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions collator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ edition = "2018"

[dependencies]
# Substrate dependencies
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }

# Polkadot dependencies
polkadot-collator = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-validation = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-collator = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
polkadot-validation = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }

# Cumulus dependencies
cumulus-consensus = { path = "../consensus" }
Expand All @@ -41,13 +41,13 @@ test-runtime = { package = "cumulus-test-runtime", path = "../test/runtime" }
test-client = { package = "cumulus-test-client", path = "../test/client" }

# Substrate dependencies
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }

# Polkadot dependencies
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }

# Other dependencies
env_logger = "0.7.1"
22 changes: 11 additions & 11 deletions consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ edition = "2018"

[dependencies]
# substrate deps
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }

# polkadot deps
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }

# other deps
futures = { version = "0.3.1", features = ["compat"] }
Expand Down
12 changes: 6 additions & 6 deletions message-broker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ edition = "2018"

[dependencies]
# substrate deps
frame-support = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }

# Other dependencies
codec = { package = "parity-scale-codec", version = "1.3.0", features = [ "derive" ], default-features = false }
Expand Down
28 changes: 14 additions & 14 deletions network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ edition = "2018"

[dependencies]
# substrate deps
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }

# polkadot deps
polkadot-collator = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-statement-table = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-validation = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-network = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-collator = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
polkadot-statement-table = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
polkadot-validation = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
polkadot-network = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }

# cumulus deps
cumulus-primitives = { path = "../primitives" }
Expand All @@ -33,9 +33,9 @@ parking_lot = "0.10.2"
cumulus-test-runtime = { path = "../test/runtime" }

# substrate deps
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }

# polkadot deps
polkadot-test-runtime-client = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" }
polkadot-test-runtime-client = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3" }
26 changes: 13 additions & 13 deletions parachain-upgrade/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@ cumulus-primitives = { path = "../primitives", default-features = false }
cumulus-runtime = { path = "../runtime", default-features = false }

# Polkadot dependencies
parachain = { package = "polkadot-parachain", git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
parachain = { package = "polkadot-parachain", git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3", default-features = false }

# Substrate dependencies
frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", version = "2.0.0-dev", default-features = false }
sp-inherents = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", version = "2.0.0-dev", default-features = false }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }

# Other Dependencies
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"]}
serde = { version = "1.0.101", optional = true, features = ["derive"] }

[dev-dependencies]
sp-externalities = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
substrate-test-runtime-client = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate.git", branch = "cumulus-branch", default-features = false }
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
substrate-test-runtime-client = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }

[features]
default = ['std']
Expand Down
12 changes: 6 additions & 6 deletions primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ edition = "2018"

[dependencies]
# Substrate dependencies
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3", default-features = false }

# Polkadot dependencies
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3", default-features = false }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3", default-features = false }

# Other dependencies
codec = { package = "parity-scale-codec", version = "1.0.5", default-features = false, features = [ "derive" ] }
impl-trait-for-tuples = "0.1.3"

# Polkadot dependencies
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3", default-features = false }

[features]
default = [ "std" ]
Expand Down
24 changes: 12 additions & 12 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@ hashbrown = "0.8.0"
cumulus-primitives = { path = "../primitives", default-features = false }

# Substrate dependencies
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cumulus-branch" }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cumulus-branch" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cumulus-branch" }
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cumulus-branch" }
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cumulus-branch" }
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cumulus-branch" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-fix-int-test-3" }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-fix-int-test-3" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-fix-int-test-3" }
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-fix-int-test-3" }
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-fix-int-test-3" }
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-fix-int-test-3" }

# Polkadot dependencies
parachain = { package = "polkadot-parachain", git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false, features = [ "wasm-api" ] }
parachain = { package = "polkadot-parachain", git = "https://github.com/paritytech/polkadot", branch = "cecton-fix-int-test-3", default-features = false, features = [ "wasm-api" ] }

[dev-dependencies]
sc-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cumulus-branch" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sc-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-fix-int-test-3" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "cecton-fix-int-test-3" }
test-client = { package = "cumulus-test-client", path = "../test/client" }

[features]
Expand Down
Loading