From bf9209752ec2b1297384dbbaabb052cf1343c64c Mon Sep 17 00:00:00 2001 From: Steven Roose Date: Fri, 15 Mar 2024 09:25:32 +0000 Subject: [PATCH] Rename noah send command to send-round --- noah/src/bin/noah/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/noah/src/bin/noah/main.rs b/noah/src/bin/noah/main.rs index 2fbef3f..ed71dd9 100644 --- a/noah/src/bin/noah/main.rs +++ b/noah/src/bin/noah/main.rs @@ -95,9 +95,9 @@ enum Command { destination: String, amount: Amount, }, - /// Send money through Ark. + /// Send money in an Ark round. #[command()] - Send { + SendRound { /// Destination for the payment, this can either be an on-chain address /// or a public key for an Ark payment. destination: String, @@ -226,7 +226,7 @@ async fn inner_main(cli: Cli) -> anyhow::Result<()> { w.send_oor_payment(pk, amount).await?; info!("Success"); }, - Command::Send { destination, amount } => { + Command::SendRound { destination, amount } => { if let Ok(pk) = PublicKey::from_str(&destination) { debug!("Sending to Ark public key {}", pk); w.send_ark_payment(pk, amount).await?;