Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

[token22] Avoid the use of extend_from_slice when appending instructions #7489

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ pub fn rotate_supply_elgamal_pubkey(
},
)];

instructions.extend_from_slice(&proof_instructions);
instructions.extend(proof_instructions);

Ok(instructions)
}
Expand Down Expand Up @@ -461,7 +461,7 @@ pub fn confidential_mint_with_split_proofs(
},
)];

instructions.extend_from_slice(&proof_instructions);
instructions.extend(proof_instructions);

Ok(instructions)
}
Expand Down Expand Up @@ -543,7 +543,7 @@ pub fn confidential_burn_with_split_proofs(
},
)];

instructions.extend_from_slice(&proof_instructions);
instructions.extend(proof_instructions);

Ok(instructions)
}
Loading