48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[settings]
|
|
timeout = 1000
|
|
bootnode = true
|
|
|
|
[relaychain.genesis.runtimeGenesis.patch.configuration.config.scheduler_params]
|
|
max_validators_per_core = 1
|
|
|
|
[relaychain.genesis.runtimeGenesis.patch.configuration.config]
|
|
needed_approvals = 2
|
|
|
|
[relaychain]
|
|
default_image = "{{ZOMBIENET_INTEGRATION_TEST_IMAGE}}"
|
|
chain = "pezkuwichain-local"
|
|
default_command = "pezkuwi"
|
|
|
|
[relaychain.default_resources]
|
|
limits = { memory = "4G", cpu = "2" }
|
|
requests = { memory = "2G", cpu = "1" }
|
|
|
|
[[relaychain.node_groups]]
|
|
name = "honest-validator"
|
|
count = 3
|
|
args = ["-lteyrchain=debug,runtime=debug"]
|
|
|
|
[[relaychain.node_groups]]
|
|
image = "{{MALUS_IMAGE}}"
|
|
name = "malus-validator"
|
|
command = "malus suggest-garbage-candidate"
|
|
args = ["-lteyrchain=debug,MALUS=trace"]
|
|
count = 1
|
|
|
|
{% for id in range(2000,2003) %}
|
|
[[teyrchains]]
|
|
id = {{id}}
|
|
addToGenesis = true
|
|
genesis_state_generator = "undying-collator export-genesis-state --pov-size={{10000*(id-1999)}} --pvf-complexity={{id - 1999}}"
|
|
[teyrchains.collator]
|
|
image = "{{COL_IMAGE}}"
|
|
name = "collator"
|
|
command = "undying-collator"
|
|
args = ["-lteyrchain=debug", "--pov-size={{10000*(id-1999)}}", "--teyrchain-id={{id}}", "--pvf-complexity={{id - 1999}}"]
|
|
{% endfor %}
|
|
|
|
[types.Header]
|
|
number = "u64"
|
|
parent_hash = "Hash"
|
|
post_state = "Hash"
|