-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix collator (undying/adder) cmd args #1245
Comments
We should add this check // Do not use `--validator` for Collators (undying/adder)
if (validator && !args.includes("--validator") && zombieRole !== ZombieRole.Collator) args.push("--validator"); or add a similar check in the configGenerator to set |
I think maybe zombienet should move away from using The validator term is confusing here since it mostly means relay chain nodes. The CLI in cumulus is set up to change any given So maybe the solution is to use |
Hi @skunert, thanks for your help and feedback. Yes, I agree that we should move away from using
Which default args you mean? We are currently working on the Again, thanks for your help 👍 |
I meant that validator = true is the default for zombienet. |
Ah, we can iterate over that for the new version and try to achieve the best trade-off between explicit set and default value. |
Followup from paritytech/polkadot#7617 (comment), we should not use
--validator
in those collators cmd.The text was updated successfully, but these errors were encountered: