Skip to content

Commit 6e5d603

Browse files
committed
solana: Fix unneeded borrow
1 parent 3f20aa9 commit 6e5d603

File tree

1 file changed

+1
-1
lines changed
  • solana/programs/example-native-token-transfers/src/instructions

1 file changed

+1
-1
lines changed

solana/programs/example-native-token-transfers/src/instructions/admin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ pub fn claim_token_authority_to_multisig(
512512
&multisig.key(),
513513
&multisig,
514514
multisig.data_len(),
515-
&ctx.remaining_accounts,
515+
ctx.remaining_accounts,
516516
)?;
517517
}
518518

0 commit comments

Comments
 (0)