mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 13:21:01 +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 <>
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[settings]
|
|
timeout = 1000
|
|
|
|
[relaychain]
|
|
default_image = "{{ZOMBIENET_INTEGRATION_TEST_IMAGE}}"
|
|
chain = "rococo-local"
|
|
|
|
[relaychain.genesis.runtimeGenesis.patch.configuration.config]
|
|
needed_approvals = 4
|
|
relay_vrf_modulo_samples = 6
|
|
|
|
[relaychain.genesis.runtimeGenesis.patch.configuration.config.async_backing_params]
|
|
max_candidate_depth = 3
|
|
allowed_ancestry_len = 2
|
|
|
|
[relaychain.genesis.runtimeGenesis.patch.configuration.config.scheduler_params]
|
|
lookahead = 2
|
|
group_rotation_frequency = 4
|
|
|
|
|
|
[relaychain.default_resources]
|
|
limits = { memory = "4G", cpu = "2" }
|
|
requests = { memory = "2G", cpu = "1" }
|
|
|
|
[[relaychain.node_groups]]
|
|
name = "alice"
|
|
args = [ "-lparachain=debug" ]
|
|
count = 12
|
|
|
|
[[parachains]]
|
|
id = 2000
|
|
addToGenesis = true
|
|
genesis_state_generator = "undying-collator export-genesis-state --pov-size=100000 --pvf-complexity=1"
|
|
|
|
[parachains.collator]
|
|
name = "collator01"
|
|
image = "{{COL_IMAGE}}"
|
|
command = "undying-collator"
|
|
args = ["-lparachain=debug", "--pov-size=100000", "--pvf-complexity=1", "--parachain-id=2000"]
|
|
|
|
[[parachains]]
|
|
id = 2001
|
|
cumulus_based = true
|
|
|
|
[parachains.collator]
|
|
name = "collator02"
|
|
image = "{{CUMULUS_IMAGE}}"
|
|
command = "polkadot-parachain"
|
|
args = ["-lparachain=debug"]
|
|
|
|
[types.Header]
|
|
number = "u64"
|
|
parent_hash = "Hash"
|
|
post_state = "Hash" |