You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
When running the collator, I want to pass CLI arguments that are related to the parachain and to the relay chain. As both are substrate projects, we need to make it possible to pass the same arguments twice to the same binary.
We want the following syntax:
collator --name parachain -- --name relaychain
The first arguments before the -- are the parachain parameters and everything after -- is a relay chain parameter.
--help should make it clear how we expect parameters to be passed.
Maybe we could also include some reasonable defaults for ports, so that they don't clash: #24
Like putting the relay chain ports at default + 1 (if they are not overwritten by a cli arg)
When running the collator, I want to pass CLI arguments that are related to the parachain and to the relay chain. As both are substrate projects, we need to make it possible to pass the same arguments twice to the same binary.
We want the following syntax:
collator --name parachain -- --name relaychainThe first arguments before the
--are the parachain parameters and everything after--is a relay chain parameter.--helpshould make it clear how we expect parameters to be passed.Maybe we could also include some reasonable defaults for ports, so that they don't clash: #24
Like putting the relay chain ports at
default + 1(if they are not overwritten by a cli arg)