Decrease instruction count in BPF Rust SDK entrypoint helper (#5760)

This commit is contained in:
Justin Starry 2019-09-03 08:38:59 -04:00 committed by GitHub
parent e8ab599bae
commit 5840e3bbdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ pub unsafe fn deserialize<'a>(
// KeyedAccounts
let mut kas = Vec::new();
let mut kas = Vec::with_capacity(num_ka);
for _ in 0..num_ka {
let is_signer = {
#[allow(clippy::cast_ptr_alignment)]