This repository was archived by the owner on Mar 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -111,12 +111,12 @@ typedef enum Token_TokenInstruction_Tag {
111
111
*
112
112
* * Single owner
113
113
* 0. `[writable]` The source account.
114
- * 2 . `[signer]` The source account owner.
114
+ * 1 . `[signer]` The source account owner.
115
115
*
116
116
* * Multisignature owner
117
117
* 0. `[writable]` The source account.
118
- * 2 . '[]' The source account's multisignature owner.
119
- * 3 . ..3 +M '[signer]' M signer accounts
118
+ * 1 . '[]' The source account's multisignature owner.
119
+ * 2 . ..2 +M '[signer]' M signer accounts
120
120
*/
121
121
Revoke,
122
122
/* *
@@ -160,12 +160,12 @@ typedef enum Token_TokenInstruction_Tag {
160
160
*
161
161
* * Single owner/delegate
162
162
* 0. `[writable]` The account to burn from.
163
- * 2 . `[signer]` The account's owner/delegate.
163
+ * 1 . `[signer]` The account's owner/delegate.
164
164
*
165
165
* * Multisignature owner/delegate
166
166
* 0. `[writable]` The account to burn from.
167
- * 2 . `[]` The account's multisignature owner/delegate
168
- * 3 . ..3 +M '[signer]' M signer accounts.
167
+ * 1 . `[]` The account's multisignature owner/delegate
168
+ * 2 . ..2 +M '[signer]' M signer accounts.
169
169
*/
170
170
Burn,
171
171
} Token_TokenInstruction_Tag;
Original file line number Diff line number Diff line change @@ -111,12 +111,12 @@ pub enum TokenInstruction {
111
111
///
112
112
/// * Single owner
113
113
/// 0. `[writable]` The source account.
114
- /// 2 . `[signer]` The source account owner.
114
+ /// 1 . `[signer]` The source account owner.
115
115
///
116
116
/// * Multisignature owner
117
117
/// 0. `[writable]` The source account.
118
- /// 2 . '[]' The source account's multisignature owner.
119
- /// 3 . ..3 +M '[signer]' M signer accounts
118
+ /// 1 . '[]' The source account's multisignature owner.
119
+ /// 2 . ..2 +M '[signer]' M signer accounts
120
120
Revoke ,
121
121
/// Sets a new owner of a mint or account.
122
122
///
@@ -157,12 +157,12 @@ pub enum TokenInstruction {
157
157
///
158
158
/// * Single owner/delegate
159
159
/// 0. `[writable]` The account to burn from.
160
- /// 2 . `[signer]` The account's owner/delegate.
160
+ /// 1 . `[signer]` The account's owner/delegate.
161
161
///
162
162
/// * Multisignature owner/delegate
163
163
/// 0. `[writable]` The account to burn from.
164
- /// 2 . `[]` The account's multisignature owner/delegate
165
- /// 3 . ..3 +M '[signer]' M signer accounts.
164
+ /// 1 . `[]` The account's multisignature owner/delegate
165
+ /// 2 . ..2 +M '[signer]' M signer accounts.
166
166
Burn {
167
167
/// The amount of tokens to burn.
168
168
amount : u64 ,
You can’t perform that action at this time.
0 commit comments