Created
August 6, 2022 21:44
-
-
Save arcticmatt/35880df33ce25dcac858058f71bbf323 to your computer and use it in GitHub Desktop.
This file contains 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 | |
pub fn test_ix<'info>( | |
ctx: Context<'_, '_, '_, 'info, TestIx<'info>>, | |
test1: Option<bool>, | |
test2: Option<bool>, | |
) -> Result<()> { | |
Ok(()) | |
} | |
// New code | |
pub fn test_ix<'info>( | |
ctx: Context<'_, '_, '_, 'info, TestIx<'info>>, | |
test1: Option<bool>, | |
) -> Result<()> { | |
Ok(()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment