nit: better rust (#21058)

This commit is contained in:
Jack May
2021-10-28 17:13:42 -07:00
committed by GitHub
parent 3140d7741c
commit e16c060abf
2 changed files with 10 additions and 13 deletions

View File

@ -396,9 +396,9 @@ fn process_instruction(
);
// put the relavant account at the end of a larger account list
let mut reordered_accounts = accounts.to_vec();
let ai = reordered_accounts.remove(FROM_INDEX);
let account_info = reordered_accounts.remove(FROM_INDEX);
reordered_accounts.push(accounts[0].clone());
reordered_accounts.push(ai);
reordered_accounts.push(account_info);
invoke(&instruction, &reordered_accounts)?;
}
}