Skip to content

Commit

Permalink
lang: Add a sanity check for unimplemented token extensions (#3090)
Browse files Browse the repository at this point in the history
  • Loading branch information
acheroncrypto authored Jul 17, 2024
1 parent 79d1cec commit 0dd6b4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The minor version will be incremented upon a breaking change and the patch versi
- lang: Remove `getrandom` dependency ([#3072](https://github.com/coral-xyz/anchor/pull/3072)).
- lang: Make `InitSpace` support unnamed & unit structs ([#3084](https://github.com/coral-xyz/anchor/pull/3084)).
- lang: Fix using `owner` constraint with `Box`ed accounts ([#3087](https://github.com/coral-xyz/anchor/pull/3087)).
- lang: Add a sanity check for unimplemented token extensions ([#3090](https://github.com/coral-xyz/anchor/pull/3090)).

### Breaking

Expand Down
4 changes: 3 additions & 1 deletion lang/syn/src/codegen/accounts/constraints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,9 @@ fn generate_constraint_init_group(
mint: #field.to_account_info(),
}), #permanent_delegate.unwrap())?;
},
_ => {} // do nothing
// All extensions specified by the user should be implemented.
// If this line runs, it means there is a bug in the codegen.
_ => unimplemented!("{e:?}"),
}
};
}
Expand Down

0 comments on commit 0dd6b4e

Please sign in to comment.