Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
danenbm committed Sep 23, 2023
1 parent 367d3f3 commit eb72750
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions programs/bubblegum/program/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ pub struct Transfer<'info> {
pub tree_authority: Account<'info, TreeConfig>,
/// CHECK: This account is checked in the instruction
pub leaf_owner: UncheckedAccount<'info>,
/// CHECK: This account is chekced in the instruction
/// CHECK: This account is checked in the instruction
pub leaf_delegate: UncheckedAccount<'info>,
/// CHECK: This account is neither written to nor read from.
pub new_leaf_owner: UncheckedAccount<'info>,
Expand Down Expand Up @@ -267,7 +267,7 @@ pub struct UpdateMetadata<'info> {
pub tree_delegate: Signer<'info>,
/// CHECK: This account is checked in the instruction
pub leaf_owner: UncheckedAccount<'info>,
/// CHECK: This account is chekced in the instruction
/// CHECK: This account is checked in the instruction
pub leaf_delegate: UncheckedAccount<'info>,
pub payer: Signer<'info>,
#[account(mut)]
Expand Down Expand Up @@ -299,7 +299,7 @@ pub struct UpdateMetadataCollectionNFT<'info> {
pub collection_authority_record_pda: Option<UncheckedAccount<'info>>,
/// CHECK: This account is checked in the instruction
pub leaf_owner: UncheckedAccount<'info>,
/// CHECK: This account is chekced in the instruction
/// CHECK: This account is checked in the instruction
pub leaf_delegate: UncheckedAccount<'info>,
pub payer: Signer<'info>,
#[account(mut)]
Expand Down Expand Up @@ -328,7 +328,7 @@ pub struct Redeem<'info> {
pub tree_authority: Account<'info, TreeConfig>,
#[account(mut)]
pub leaf_owner: Signer<'info>,
/// CHECK: This account is chekced in the instruction
/// CHECK: This account is checked in the instruction
pub leaf_delegate: UncheckedAccount<'info>,
#[account(mut)]
/// CHECK: checked in cpi
Expand Down Expand Up @@ -440,7 +440,7 @@ pub struct Compress<'info> {
pub tree_authority: UncheckedAccount<'info>,
/// CHECK: This account is checked in the instruction
pub leaf_owner: Signer<'info>,
/// CHECK: This account is chekced in the instruction
/// CHECK: This account is checked in the instruction
pub leaf_delegate: UncheckedAccount<'info>,
/// CHECK: This account is not read
pub merkle_tree: UncheckedAccount<'info>,
Expand Down

0 comments on commit eb72750

Please sign in to comment.