Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #299 from subspace/update-command-info
Browse files Browse the repository at this point in the history
Update "Subspace CLI" to "pulsar" in command info and implementation
  • Loading branch information
jfrank-summit committed Feb 10, 2024
2 parents ed48e9d + 4274c0d commit 0237b64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pulsar/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ impl NodeConfig {
node = node
.role(Role::Authority)
.impl_version(format!("{}-{}", env!("CARGO_PKG_VERSION"), env!("GIT_HASH")))
.impl_name("Subspace CLI".to_string());
.impl_name("pulsar".to_string());

crate::utils::apply_extra_options(&node.configuration(), extra)
.context("Failed to deserialize node config")?
Expand Down
4 changes: 2 additions & 2 deletions pulsar/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

#[derive(Debug, Parser)]
#[command(subcommand_required = false)]
#[command(name = "subspace")]
#[command(about = "Subspace CLI", long_about = None)]
#[command(name = "pulsar")]
#[command(about = "pulsar", long_about = None)]
#[command(version)]
struct Cli {
#[command(subcommand)]
Expand Down

0 comments on commit 0237b64

Please sign in to comment.