Skip to content

Commit

Permalink
Update impl_name() and description (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghzlatarev authored Jun 30, 2021
1 parent 960d936 commit 702a288
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fn load_spec(

impl SubstrateCli for Cli {
fn impl_name() -> String {
"Manta Collator".into()
"Manta Parachain Collator".into()
}

fn impl_version() -> String {
Expand All @@ -47,7 +47,7 @@ impl SubstrateCli for Cli {

fn description() -> String {
format!(
"Manta Collator\n\nThe command-line arguments provided first will be \
"Manta Parachain Collator\n\nThe command-line arguments provided first will be \
passed to the parachain node, while the arguments provided after -- will be passed \
to the relaychain node.\n\n\
{} [parachain-args] -- [relaychain-args]",
Expand Down Expand Up @@ -78,15 +78,15 @@ impl SubstrateCli for Cli {

impl SubstrateCli for RelayChainCli {
fn impl_name() -> String {
"Manta Collator".into()
"Manta Parachain Collator".into()
}

fn impl_version() -> String {
env!("SUBSTRATE_CLI_IMPL_VERSION").into()
}

fn description() -> String {
"Manta Collator\n\nThe command-line arguments provided first will be \
"Manta Parachain Collator\n\nThe command-line arguments provided first will be \
passed to the parachain node, while the arguments provided after -- will be passed \
to the relaychain node.\n\n\
rococo-collator [parachain-args] -- [relaychain-args]"
Expand Down

0 comments on commit 702a288

Please sign in to comment.