Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
CI: Fix clippy for confidential mint/burn (#7424)
Browse files Browse the repository at this point in the history
#### Problem

The PR for the upgrade for v2.1 and confidential mint/burn went in at
the same time, but there were some improper doc comments in the
confidential mint/burn, which breaks the new clippy version used with
v2.1.

#### Summary of changes

Update the doc comments to unbreak master.
  • Loading branch information
joncinque authored Oct 31, 2024
1 parent 8e0ed0a commit 632cd99
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 632cd99

Please sign in to comment.