Skip to content

Instantly share code, notes, and snippets.

@arcticmatt
Created August 6, 2022 21:38
Show Gist options
  • Save arcticmatt/5fb86506e6f5f99b389f70b2f11c9487 to your computer and use it in GitHub Desktop.
Save arcticmatt/5fb86506e6f5f99b389f70b2f11c9487 to your computer and use it in GitHub Desktop.
// Old code
#[account]
pub struct FooAccount {
foo_num: u128,
}
// New code
#[account]
pub struct FooAccount {
foo_num: u128,
foo_num2: u128,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment