From 4274c0d5ce8c36d0b582d319497164332ca679ea Mon Sep 17 00:00:00 2001 From: Jeremy Frank <37932802+jfrank-summit@users.noreply.github.com> Date: Sat, 10 Feb 2024 06:45:52 -0700 Subject: [PATCH] update Subspace CLI to pulsar in command info and implementation --- pulsar/src/config.rs | 2 +- pulsar/src/main.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pulsar/src/config.rs b/pulsar/src/config.rs index 173399ef..6dfb63cb 100644 --- a/pulsar/src/config.rs +++ b/pulsar/src/config.rs @@ -95,7 +95,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")? diff --git a/pulsar/src/main.rs b/pulsar/src/main.rs index 924b30a1..3ec98a86 100644 --- a/pulsar/src/main.rs +++ b/pulsar/src/main.rs @@ -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)]