mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
a035dc9be7
This PR removes `AssignmentProviderConfig` and uses the corresponding ondemand parameters from `HostConfiguration` instead. Additionally `scheduling_lookahead` and all coretime/ondemand related parameters are extracted in a separate struct - `SchedulerParams`. The most relevant commit from the PR is [this one](https://github.com/paritytech/polkadot-sdk/pull/3181/commits/830bc0f5e858944474171bbe33382ad96040b535). Fixes https://github.com/paritytech/polkadot-sdk/issues/2268 --------- Co-authored-by: command-bot <>
42 lines
996 B
TOML
42 lines
996 B
TOML
[settings]
|
|
timeout = 1000
|
|
bootnode = true
|
|
|
|
[relaychain.genesis.runtimeGenesis.patch.configuration.config]
|
|
needed_approvals = 2
|
|
|
|
[relaychain.genesis.runtimeGenesis.patch.configuration.config.scheduler_params]
|
|
max_validators_per_core = 1
|
|
group_rotation_frequency = 10
|
|
|
|
[relaychain]
|
|
default_image = "{{ZOMBIENET_INTEGRATION_TEST_IMAGE}}"
|
|
chain = "westend-local" # for the disabling to take an effect
|
|
default_command = "polkadot"
|
|
|
|
[relaychain.default_resources]
|
|
limits = { memory = "4G", cpu = "2" }
|
|
requests = { memory = "2G", cpu = "1" }
|
|
|
|
[[relaychain.node_groups]]
|
|
name = "honest-validator"
|
|
count = 3
|
|
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"]
|