Skip to content

Instantly share code, notes, and snippets.

@alecchendev
Created April 9, 2022 03:17
Show Gist options
  • Save alecchendev/992d0864de3abc4eab27505f07bbdb40 to your computer and use it in GitHub Desktop.
Save alecchendev/992d0864de3abc4eab27505f07bbdb40 to your computer and use it in GitHub Desktop.
// get accounts
let accounts_iter = &mut accounts.iter();
let account = next_account_info(&accounts_iter)?;
// modify
let mut account_data = account.try_borrow_mut_data()?;
for i in 0..account.data_len() {
account_data[i] = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment