Skip to content

Commit

Permalink
Merge pull request #971 from Oscar-Pepper/fix_quicksend_command_typo
Browse files Browse the repository at this point in the history
also fix quicksend description
  • Loading branch information
zancas authored Apr 20, 2024
2 parents 94486f2 + 822b1ae commit 5297ce6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zingolib/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -950,14 +950,14 @@ impl Command for QuickSendCommand {
Ok(args) => args,
Err(e) => {
return format!(
"Error: {}\nTry 'help send' for correct usage and examples.",
"Error: {}\nTry 'help quicksend' for correct usage and examples.",
e
)
}
};
if let Err(e) = utils::check_memo_compatibility(&send_inputs, &lightclient.config().chain) {
return format!(
"Error: {}\nTry 'help send' for correct usage and examples.",
"Error: {}\nTry 'help quicksend' for correct usage and examples.",
e,
);
};
Expand Down

0 comments on commit 5297ce6

Please sign in to comment.