Skip to content

Instantly share code, notes, and snippets.

@mattm
Created December 9, 2021 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattm/ad6ad326fd09e98cc2c2ae3317a9aceb to your computer and use it in GitHub Desktop.
Save mattm/ad6ad326fd09e98cc2c2ae3317a9aceb to your computer and use it in GitHub Desktop.
// For accounts unassigned to the program, the data may not change.
if *program_id != account.owner
&& !system_program::check_id(&program_id)
&& pre_data != &account.data[..]
{
return Err(InstructionError::ExternalAccountDataModified);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment