This repository was archived by the owner on Mar 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ impl PrintProgramError for TokenError {
463
463
msg ! ( "Invalid scale for scaled ui amount" )
464
464
}
465
465
TokenError :: MintPaused => {
466
- msg ! ( "Transferring, minting, and burning is paused on this mint" ) ;
466
+ msg ! ( "Transferring, minting, and burning is paused on this mint" )
467
467
}
468
468
}
469
469
}
Original file line number Diff line number Diff line change @@ -183,6 +183,7 @@ pub enum ConfidentialTransferInstruction {
183
183
/// Fails if the source or destination accounts are frozen.
184
184
/// Fails if the associated mint is extended as `NonTransferable`.
185
185
/// Fails if the associated mint is extended as `ConfidentialMintBurn`.
186
+ /// Fails if the associated mint is paused with the `Pausable` extension.
186
187
///
187
188
/// Accounts expected by this instruction:
188
189
///
@@ -219,6 +220,7 @@ pub enum ConfidentialTransferInstruction {
219
220
/// Fails if the source or destination accounts are frozen.
220
221
/// Fails if the associated mint is extended as `NonTransferable`.
221
222
/// Fails if the associated mint is extended as `ConfidentialMintBurn`.
223
+ /// Fails if the associated mint is paused with the `Pausable` extension.
222
224
///
223
225
/// Accounts expected by this instruction:
224
226
///
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ fn process_initialize(
37
37
Ok ( ( ) )
38
38
}
39
39
40
- /// Pause minting / burning / transferring on the mint
40
+ /// Pause or resume minting / burning / transferring on the mint
41
41
fn process_toggle_pause (
42
42
program_id : & Pubkey ,
43
43
accounts : & [ AccountInfo ] ,
You can’t perform that action at this time.
0 commit comments