mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 14:31:02 +00:00
f5e9827fda
There was a race in merging between https://github.com/paritytech/polkadot-sdk/pull/1256 and https://github.com/paritytech/polkadot-sdk/pull/1178, so this newly added tests wasn't updated with the new path for the configuration, so fix that. Signed-off-by: Alexandru Gheorghe <alexandru.gheorghe@parity.io>
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[settings]
|
|
timeout = 1000
|
|
bootnode = true
|
|
|
|
[relaychain.genesis.runtimeGenesis.patch.configuration.config]
|
|
max_validators_per_core = 1
|
|
needed_approvals = 7
|
|
relay_vrf_modulo_samples = 5
|
|
|
|
[relaychain]
|
|
default_image = "{{ZOMBIENET_INTEGRATION_TEST_IMAGE}}"
|
|
chain = "rococo-local"
|
|
default_command = "polkadot"
|
|
|
|
[relaychain.default_resources]
|
|
limits = { memory = "4G", cpu = "2" }
|
|
requests = { memory = "2G", cpu = "1" }
|
|
|
|
[[relaychain.node_groups]]
|
|
name = "some-validator"
|
|
count = 8
|
|
args = ["-lparachain=debug,runtime=debug"]
|
|
|
|
{% for id in range(2000,2005) %}
|
|
[[parachains]]
|
|
id = {{id}}
|
|
addToGenesis = true
|
|
genesis_state_generator = "undying-collator export-genesis-state --pov-size={{10000*(id-1999)}} --pvf-complexity={{id - 1999}}"
|
|
[parachains.collator]
|
|
image = "{{COL_IMAGE}}"
|
|
name = "collator"
|
|
command = "undying-collator"
|
|
args = ["-lparachain=debug", "--pov-size={{10000*(id-1999)}}", "--parachain-id={{id}}", "--pvf-complexity={{id - 1999}}"]
|
|
{% endfor %}
|
|
|
|
[types.Header]
|
|
number = "u64"
|
|
parent_hash = "Hash"
|
|
post_state = "Hash"
|