mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
b1a5d70256
* 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 <skunert@Sebastians-MacBook-Pro.fritz.box> Co-authored-by: Javier Viola <pepoviola@gmail.com>
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[relaychain]
|
|
default_image = "docker.io/paritypr/polkadot-debug:master"
|
|
default_command = "polkadot"
|
|
default_args = [ "-lparachain=debug" ]
|
|
|
|
chain = "rococo-local"
|
|
|
|
[[relaychain.nodes]]
|
|
name = "alice"
|
|
validator = true
|
|
|
|
[[relaychain.nodes]]
|
|
name = "bob"
|
|
image = "docker.io/paritypr/polkadot-debug:5236-0.9.18-c55660e9-be16bd72"
|
|
validator = true
|
|
args = ["--database=paritydb-experimental"]
|
|
|
|
[[parachains]]
|
|
id = 2000
|
|
cumulus_based = true
|
|
|
|
# run charlie as parachain collator
|
|
[[parachains.collators]]
|
|
name = "charlie"
|
|
validator = true
|
|
image = "docker.io/parity/polkadot-collator:latest"
|
|
command = "test-collator"
|
|
args = ["-lparachain=debug"]
|
|
|
|
# run cumulus dave (a parachain full node) and wait for it to sync some blocks
|
|
[[parachains.collators]]
|
|
name = "dave"
|
|
validator = false
|
|
image = "docker.io/parity/polkadot-collator:latest"
|
|
command = "test-collator"
|
|
args = ["--reserved-only", "--reserved-nodes {{'charlie'|zombie}}"]
|
|
|
|
# run cumulus eve (a parachain full node) and wait for it to sync some blocks
|
|
[[parachains.collators]]
|
|
name = "eve"
|
|
validator = false
|
|
image = "docker.io/parity/polkadot-collator:latest"
|
|
command = "test-collator"
|
|
args = ["--reserved-only", "--reserved-nodes {{'charlie'|zombie}}"]
|