Created
August 6, 2022 21:38
-
-
Save arcticmatt/5fb86506e6f5f99b389f70b2f11c9487 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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