Skip to content

Commit

Permalink
fix(set immutable): fix process_subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelvanderwaal committed Feb 11, 2022
1 parent 03fc517 commit acaca6c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/process_subcommands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,9 @@ pub fn process_set(client: &RpcClient, commands: SetSubcommands) -> Result<()> {
&mint_accounts_file,
&new_update_authority,
),
SetSubcommands::Immutable {
keypair,
mint_account,
} => set_immutable(&client, &keypair, &mint_account),
SetSubcommands::Immutable { keypair, account } => {
set_immutable(&client, &keypair, &account)
}
SetSubcommands::ImmutableAll {
keypair,
mint_accounts_file,
Expand Down

0 comments on commit acaca6c

Please sign in to comment.