bump zombienet to v1.3.65 (#7631)

* bump zombienet version

* remove workaround, zombienet collators cmd bug fixed in latest version

* add env var to run in ci

* add env var to run in ci
This commit is contained in:
Javier Viola
2023-08-16 17:31:57 -03:00
committed by GitHub
parent a42b32e392
commit e6473e2840
4 changed files with 17 additions and 14 deletions
@@ -21,7 +21,6 @@ use polkadot_node_primitives::CollationGenerationConfig;
use polkadot_node_subsystem::messages::{CollationGenerationMessage, CollatorProtocolMessage};
use polkadot_primitives::Id as ParaId;
use sc_cli::{Error as SubstrateCliError, SubstrateCli};
use sc_service::Role;
use sp_core::hexdisplay::HexDisplay;
use test_parachain_adder_collator::Collator;
@@ -54,12 +53,9 @@ fn main() -> Result<()> {
)
})?;
runner.run_node_until_exit(|mut config| async move {
runner.run_node_until_exit(|config| async move {
let collator = Collator::new();
// Zombienet is spawning all collators currently with the same CLI, this means it
// sets `--validator` and this is wrong here.
config.role = Role::Full;
let full_node = polkadot_service::build_full(
config,
polkadot_service::NewFullParams {