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

CI: Fix clippy for confidential mint/burn #7424

Merged
merged 1 commit into from
Oct 31, 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 @@ -77,7 +77,7 @@ pub enum ConfidentialMintBurnInstruction {
/// `CiphertextCiphertextEquality` is pre-verified into a context state
/// account.
/// 2. `[]` The multisig authority account owner.
/// 3.. `[signer]` Required M signer accounts for the SPL Token Multisig
/// 3. ..`[signer]` Required M signer accounts for the SPL Token Multisig
///
/// Data expected by this instruction:
/// `RotateSupplyElGamalPubkeyData`
Expand All @@ -93,7 +93,7 @@ pub enum ConfidentialMintBurnInstruction {
/// * Multisignature authority
/// 0. `[writable]` The SPL Token mint.
/// 1. `[]` The multisig authority account owner.
/// 2.. `[signer]` Required M signer accounts for the SPL Token Multisig
/// 2. ..`[signer]` Required M signer accounts for the SPL Token Multisig
///
/// Data expected by this instruction:
/// `UpdateDecryptableSupplyData`
Expand Down Expand Up @@ -133,7 +133,7 @@ pub enum ConfidentialMintBurnInstruction {
/// 5. `[]` (Optional) The context state account containing the
/// pre-verified `VerifyBatchedRangeProofU128`
/// 6. `[]` The multisig account owner.
/// 7.. `[signer]` Required M signer accounts for the SPL Token Multisig
/// 7. ..`[signer]` Required M signer accounts for the SPL Token Multisig
///
/// Data expected by this instruction:
/// `MintInstructionData`
Expand Down Expand Up @@ -173,7 +173,7 @@ pub enum ConfidentialMintBurnInstruction {
/// 5. `[]` (Optional) The context state account containing the
/// pre-verified `VerifyBatchedRangeProofU128`
/// 6. `[]` The multisig account owner.
/// 7.. `[signer]` Required M signer accounts for the SPL Token Multisig
/// 7. ..`[signer]` Required M signer accounts for the SPL Token Multisig
///
/// Data expected by this instruction:
/// `BurnInstructionData`
Expand Down
Loading