Skip to content

Commit

Permalink
chore:change cli command name from Pay to Melt
Browse files Browse the repository at this point in the history
  • Loading branch information
mubarak23 committed Oct 23, 2024
1 parent 103574b commit 2905b36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cdk-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ enum Commands {
/// Balance
Balance,
/// Pay bolt11 invoice
Pay(sub_commands::melt::MeltSubCommand),
Melt(sub_commands::melt::MeltSubCommand),
/// Claim pending mint quotes that have been paid
MintPending,
/// Receive token
Expand Down Expand Up @@ -158,7 +158,7 @@ async fn main() -> Result<()> {
sub_commands::decode_token::decode_token(sub_command_args)
}
Commands::Balance => sub_commands::balance::balance(&multi_mint_wallet).await,
Commands::Pay(sub_command_args) => {
Commands::Melt(sub_command_args) => {
sub_commands::melt::pay(&multi_mint_wallet, sub_command_args).await
}
Commands::Receive(sub_command_args) => {
Expand Down

0 comments on commit 2905b36

Please sign in to comment.