This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Create binary for cumulus testing node * Fix call to wrong method * Fix iterator bug * Add real networking to polkadot node * Allow using of file chain specs * Implement export of wasm blob and genesis state * Add parachain id to test service export * Remove debug logs * Fix main.rs * Do not use cli from polkadot-collator * Add tracing dependency * Improve cli structure * Use struct instead of enum for export commands * Add missing license header * Fix benchmark * add build-spec subcommand (#19) * add build-spec subcommand * reorder args * Fix formatting * Add zombienet test (#26) * add migrated tests * rename test files * uncomment args and remove extra collator node * Fix indentation (#27) * add migrated tests * rename test files * uncomment args and remove extra collator node * fix identation * Review comments * Remove unwanted version changes Co-authored-by: Sebastian Kunert <[email protected]> Co-authored-by: Javier Viola <[email protected]>
- Loading branch information
1 parent
45a45be
commit b1a5d70
Showing
12 changed files
with
728 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,10 @@ version = "0.1.0" | |
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
[[bin]] | ||
name = "test-parachain" | ||
path = "src/main.rs" | ||
|
||
[dependencies] | ||
async-trait = "0.1.53" | ||
codec = { package = "parity-scale-codec", version = "3.0.0" } | ||
|
@@ -30,25 +34,31 @@ sc-service = { 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-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
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-io = { 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", default-features = false, branch = "master" } | ||
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
clap = { version = "3.1", features = ["derive"] } | ||
tracing = "0.1.25" | ||
|
||
# Polkadot | ||
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-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } | ||
|
||
# Cumulus | ||
cumulus-client-cli = { path = "../../client/cli" } | ||
parachains-common = { path = "../../polkadot-parachains/parachains-common" } | ||
cumulus-client-consensus-common = { path = "../../client/consensus/common" } | ||
cumulus-client-consensus-relay-chain = { path = "../../client/consensus/relay-chain" } | ||
cumulus-client-network = { path = "../../client/network" } | ||
|
Oops, something went wrong.