Revert 4271 workaround (#4367)
* Revert "#4271 not reproducable, remove workaround (#4363)" This reverts commit ef0580bd3dff7803de8d139ff46ffa5647189177. * Remove old comment
This commit is contained in:
parent
28f948aa7f
commit
1cbd2372fc
@ -181,7 +181,8 @@ pub fn deserialize<'a>(
|
||||
|
||||
let mut ka: [Option<SolKeyedAccount>; MAX_ACCOUNTS] =
|
||||
[None, None, None, None, None, None, None, None, None, None];
|
||||
for i in 0..num_ka {
|
||||
let iter = 0..num_ka; // This weirdness due to #issue $#4271
|
||||
for (i, _) in iter.enumerate() {
|
||||
let is_signer = unsafe {
|
||||
#[allow(clippy::cast_ptr_alignment)]
|
||||
let is_signer_ptr: *const u64 = input.add(offset) as *const u64;
|
||||
|
Loading…
x
Reference in New Issue
Block a user