Skip to content

Commit

Permalink
Fix truncated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
febo committed Sep 27, 2023
1 parent bfcfc15 commit df5d4d3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export type SetAndVerifyCollectionInstructionAccounts = {
merkleTree: PublicKey | Pda;
payer?: Signer;
/**
* This account is checked to be a signer in
* the case of `set_and_verify_collection` where
* we are actually changing the NFT metadata.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export type UnverifyCollectionInstructionAccounts = {
merkleTree: PublicKey | Pda;
payer?: Signer;
/**
* This account is checked to be a signer in
* the case of `set_and_verify_collection` where
* we are actually changing the NFT metadata.
*/
Expand Down
1 change: 1 addition & 0 deletions clients/js/src/generated/instructions/verifyCollection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export type VerifyCollectionInstructionAccounts = {
merkleTree: PublicKey | Pda;
payer?: Signer;
/**
* This account is checked to be a signer in
* the case of `set_and_verify_collection` where
* we are actually changing the NFT metadata.
*/
Expand Down
3 changes: 3 additions & 0 deletions idls/bubblegum.json
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,7 @@
"isMut": false,
"isSigner": false,
"docs": [
"This account is checked to be a signer in",
"the case of `set_and_verify_collection` where",
"we are actually changing the NFT metadata."
]
Expand Down Expand Up @@ -1012,6 +1013,7 @@
"isMut": false,
"isSigner": false,
"docs": [
"This account is checked to be a signer in",
"the case of `set_and_verify_collection` where",
"we are actually changing the NFT metadata."
]
Expand Down Expand Up @@ -1247,6 +1249,7 @@
"isMut": false,
"isSigner": false,
"docs": [
"This account is checked to be a signer in",
"the case of `set_and_verify_collection` where",
"we are actually changing the NFT metadata."
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ pub struct CollectionVerification<'info> {
/// CHECK: This account is modified in the downstream program
pub merkle_tree: UncheckedAccount<'info>,
pub payer: Signer<'info>,
/// CHECK: This account is checked to be a signer in
/// CHECK: This account is checked in the instruction
/// This account is checked to be a signer in
/// the case of `set_and_verify_collection` where
/// we are actually changing the NFT metadata.
pub tree_delegate: UncheckedAccount<'info>,
Expand Down

0 comments on commit df5d4d3

Please sign in to comment.