pub fn check_header(
data: &[u8],
expected_disc: u8,
min_version: u8,
) -> Result<(), ProgramError>Expand description
Validate the discriminator and minimum version of an account header.
Returns InvalidAccountData if the discriminator doesn’t match or
the stored version is below min_version.