mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 21:01:02 +00:00
a47943983f
* zombienet: use test-parachain image for the slashing test * use the right image * try polkadot-parachain image * try naming collator alice 🙈 * add needed job for the pipeline * fix user id in polkadot-parachain-debug image * small tweaks to the test * another small tweak * yet another small tweak * bump zombienet version --------- Co-authored-by: Javier Viola <javier@parity.io>
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[settings]
|
|
timeout = 1000
|
|
bootnode = true
|
|
|
|
[relaychain.genesis.runtime.configuration.config]
|
|
max_validators_per_core = 1
|
|
needed_approvals = 2
|
|
group_rotation_frequency = 2
|
|
|
|
[relaychain]
|
|
default_image = "{{ZOMBIENET_INTEGRATION_TEST_IMAGE}}"
|
|
chain = "westend-local" # using westend-local to enable slashing
|
|
default_command = "polkadot"
|
|
|
|
[relaychain.default_resources]
|
|
limits = { memory = "4G", cpu = "2" }
|
|
requests = { memory = "2G", cpu = "1" }
|
|
|
|
[[relaychain.node_groups]]
|
|
name = "honest-flaky-validator"
|
|
invulnerable = true # it will go offline, we don't want to disable it
|
|
count = 2
|
|
args = ["-lparachain=debug"]
|
|
|
|
[[relaychain.node_groups]]
|
|
name = "honest-validator"
|
|
count = 1
|
|
args = ["-lparachain=debug"]
|
|
|
|
[[relaychain.node_groups]]
|
|
image = "{{MALUS_IMAGE}}"
|
|
name = "malus-validator"
|
|
command = "malus suggest-garbage-candidate"
|
|
args = ["-lMALUS=trace"]
|
|
count = 1
|
|
|
|
[[parachains]]
|
|
id = 1000
|
|
cumulus_based = true
|
|
|
|
[parachains.collator]
|
|
name = "alice"
|
|
command = "polkadot-parachain"
|
|
image = "{{CUMULUS_IMAGE}}"
|
|
args = ["-lparachain=debug"]
|