diff --git a/zombienet/full_network.toml b/zombienet/full_network.toml index d5de7833..dd0d8456 100644 --- a/zombienet/full_network.toml +++ b/zombienet/full_network.toml @@ -5,26 +5,26 @@ timeout = 1000 chain = "rococo-local" default_command = "./bin/polkadot" - [[relaychain.nodes]] - name = "alice" - validator = true - ws_port = 9900 - extra_args = [ "-lparachain=debug" ] - - [[relaychain.nodes]] - name = "bob" - validator = true - extra_args = [ "-lparachain=debug" ] - - [[relaychain.nodes]] - name = "charlie" - validator = true - extra_args = [ "-lparachain=debug" ] - - [[relaychain.nodes]] - name = "dave" - validator = true - extra_args = [ "-lparachain=debug" ] +[[relaychain.nodes]] +name = "alice" +validator = true +ws_port = 9900 +extra_args = ["-lparachain=debug"] + +[[relaychain.nodes]] +name = "bob" +validator = true +extra_args = ["-lparachain=debug"] + +[[relaychain.nodes]] +name = "charlie" +validator = true +extra_args = ["-lparachain=debug"] + +[[relaychain.nodes]] +name = "dave" +validator = true +extra_args = ["-lparachain=debug"] [[parachains]] id = 1000 @@ -32,17 +32,17 @@ add_to_genesis = true cumulus_based = true chain = "asset-hub-rococo-local" - [[parachains.collators]] - name = "asset-hub-collator01" - command = "./bin/polkadot-parachain" - ws_port = 9910 - args = ["--log=xcm=trace,pallet-assets=trace"] +[[parachains.collators]] +name = "asset-hub-collator01" +command = "./bin/polkadot-parachain" +ws_port = 9910 +args = ["--log=xcm=trace,pallet-assets=trace"] - [[parachains.collators]] - name = "asset-hub-collator02" - command = "./bin/polkadot-parachain" - ws_port = 9911 - args = ["--log=xcm=trace,pallet-assets=trace"] +[[parachains.collators]] +name = "asset-hub-collator02" +command = "./bin/polkadot-parachain" +ws_port = 9911 +args = ["--log=xcm=trace,pallet-assets=trace"] [[parachains]] id = 1836 @@ -50,17 +50,17 @@ add_to_genesis = true cumulus_based = true chain = "trappist-local" - [[parachains.collators]] - name = "trappist-collator01" - command = "./target/release/trappist-node" - ws_port = 9920 - args = ["--log=xcm=trace,pallet-assets=trace"] +[[parachains.collators]] +name = "trappist-collator01" +command = "./target/release/trappist-node" +ws_port = 9920 +args = ["--log=xcm=trace,pallet-assets=trace"] - [[parachains.collators]] - name = "trappist-collator02" - command = "./target/release/trappist-node" - ws_port = 9921 - args = ["--log=xcm=trace,pallet-assets=trace"] +[[parachains.collators]] +name = "trappist-collator02" +command = "./target/release/trappist-node" +ws_port = 9921 +args = ["--log=xcm=trace,pallet-assets=trace"] [[parachains]] id = 3000 @@ -68,25 +68,26 @@ add_to_genesis = true cumulus_based = true chain = "stout-local" - [[parachains.collators]] - name = "stout-collator01" - command = "./target/release/trappist-node" - ws_port = 9930 - args = ["--log=xcm=trace,pallet-assets=trace"] +[[parachains.collators]] +name = "stout-collator01" +command = "./target/release/trappist-node" +ws_port = 9930 +args = ["--log=xcm=trace,pallet-assets=trace"] - [[parachains.collators]] - name = "stout-collator02" - command = "./target/release/trappist-node" - ws_port = 9931 - args = ["--log=xcm=trace,pallet-assets=trace"] +[[parachains.collators]] +name = "stout-collator02" +command = "./target/release/trappist-node" +ws_port = 9931 +args = ["--log=xcm=trace,pallet-assets=trace"] [types.Header] number = "u64" parent_hash = "Hash" post_state = "Hash" -# Currently there is a known issue with opening hrmp channels on Zombienete config. -# Use hrmp_helper to open channels instead. +# Currently there is a known issue with opening hrmp channels +# on genesis that stops block production after epoch 1. +# Use hrmp_helper script after network spawn to open channels instead. # [[hrmp_channels]] # sender = 1000 @@ -122,4 +123,4 @@ post_state = "Hash" # sender = 3000 # recipient = 1836 # max_capacity = 8 -# max_message_size = 512 \ No newline at end of file +# max_message_size = 512 diff --git a/zombienet/stout_rococo.toml b/zombienet/stout_rococo.toml index 140e56c6..52dbd765 100644 --- a/zombienet/stout_rococo.toml +++ b/zombienet/stout_rococo.toml @@ -67,14 +67,18 @@ number = "u64" parent_hash = "Hash" post_state = "Hash" -[[hrmp_channels]] -sender = 1000 -recipient = 3000 -max_capacity = 8 -max_message_size = 512 +# Currently there is a known issue with opening hrmp channels +# on genesis that stops block production after epoch 1. +# Use hrmp_helper script after network spawn to open channels instead. -[[hrmp_channels]] -sender = 3000 -recipient = 1000 -max_capacity = 8 -max_message_size = 512 \ No newline at end of file +# [[hrmp_channels]] +# sender = 1000 +# recipient = 3000 +# max_capacity = 8 +# max_message_size = 512 + +# [[hrmp_channels]] +# sender = 3000 +# recipient = 1000 +# max_capacity = 8 +# max_message_size = 512 \ No newline at end of file diff --git a/zombienet/trappist_rococo.toml b/zombienet/trappist_rococo.toml index c8259240..64c4b3b4 100644 --- a/zombienet/trappist_rococo.toml +++ b/zombienet/trappist_rococo.toml @@ -67,14 +67,18 @@ number = "u64" parent_hash = "Hash" post_state = "Hash" -[[hrmp_channels]] -sender = 1000 -recipient = 1836 -max_capacity = 8 -max_message_size = 512 +# Currently there is a known issue with opening hrmp channels +# on genesis that stops block production after epoch 1. +# Use hrmp_helper script after network spawn to open channels instead. -[[hrmp_channels]] -sender = 1836 -recipient = 1000 -max_capacity = 8 -max_message_size = 512 \ No newline at end of file +# [[hrmp_channels]] +# sender = 1000 +# recipient = 1836 +# max_capacity = 8 +# max_message_size = 512 + +# [[hrmp_channels]] +# sender = 1836 +# recipient = 1000 +# max_capacity = 8 +# max_message_size = 512 \ No newline at end of file diff --git a/zombienet/trappist_stout.toml b/zombienet/trappist_stout.toml index e7545d82..cf8d8d34 100644 --- a/zombienet/trappist_stout.toml +++ b/zombienet/trappist_stout.toml @@ -68,8 +68,9 @@ number = "u64" parent_hash = "Hash" post_state = "Hash" -# Currently there is a known issue with opening hrmp channels on Zombienete config. -# Use hrmp_helper to open channels instead. +# Currently there is a known issue with opening hrmp channels +# on genesis that stops block production after epoch 1. +# Use hrmp_helper script after network spawn to open channels instead. # [[hrmp_channels]] # sender = 1836