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

Commit bc7edce

Browse files
committed
token: cbindgen doing its thing...
1 parent 2190cba commit bc7edce

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

token/program/inc/token.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
#include <stdlib.h>
99

1010
/**
11-
* Maximum number of multisignature signers (max N)
11+
* Minimum number of multisignature signers (min N)
1212
*/
13-
#define Token_MAX_SIGNERS 11
13+
#define Token_MIN_SIGNERS 1
1414

1515
/**
16-
* Minimum number of multisignature signers (min N)
16+
* Maximum number of multisignature signers (max N)
1717
*/
18-
#define Token_MIN_SIGNERS 1
18+
#define Token_MAX_SIGNERS 11
1919

2020
/**
2121
* Account state.
@@ -263,9 +263,9 @@ typedef enum Token_TokenInstruction_Tag {
263263
*
264264
* * Multisignature owner/delegate
265265
* 0. `[writable]` The account to burn from.
266-
* 1. '[writable]' The token mint.
266+
* 1. `[writable]` The token mint.
267267
* 2. `[]` The account's multisignature owner/delegate.
268-
* 3. ..3+M '[signer]' M signer accounts.
268+
* 3. ..3+M `[signer]` M signer accounts.
269269
*/
270270
Token_TokenInstruction_Burn,
271271
/**

0 commit comments

Comments
 (0)