-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: used identifiers in handler #2464
Conversation
Hey, thank you for fixing this. Could you add a test case for it in tests/misc so that we don't break it again in the future. |
@CanardMandarin is attempting to deploy a commit to the coral-xyz Team on Vercel. A member of the Team first needs to authorize it. |
Sure! What do you think of #91e6abe? |
This is looking good to merge once the review comment is adressed and CHANGELOG is updated. |
I'm glad you ask a test with the |
This is a breaking change for programs that depend on Example: #[derive(Accounts)]
pub struct MyInstruction<'info> {
#[account(owner = *program_id)]
my_account: AccountInfo<'info>
} Programs shouldn't rely on variables that are defined inside codegen. |
This PR fixes the issue #55
It is a bit old, I hope it is still relevant.
The
nonce
identifier does not seem to be used anymore.