Skip to content

Commit

Permalink
remove extra lifetime parameters from App
Browse files Browse the repository at this point in the history
  • Loading branch information
samkim-crypto committed Sep 3, 2023
1 parent 03e8f88 commit 65bfa07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions token/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2752,10 +2752,10 @@ fn multisig_member_help_string() -> String {
)
}

fn app<'a, 'b>(
fn app<'a>(
default_decimals: &'a str,
minimum_signers_help: &'b str,
multisig_member_help: &'b str,
minimum_signers_help: &'a str,
multisig_member_help: &'a str,
) -> App<'a> {
App::new(crate_name!())
.about(crate_description!())
Expand Down

0 comments on commit 65bfa07

Please sign in to comment.