This commit is contained in:
Jeff Washington (jwash) 2023-02-12 15:42:03 -06:00 committed by GitHub
parent dc605b5126
commit b3778d5044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -369,7 +369,7 @@ impl AccountsDb {
} = packed;
let accounts_to_write = StorableAccountsBySlot::new(
target_slot,
&accounts_to_write[..],
accounts_to_write,
INCLUDE_SLOT_IN_HASH_IRRELEVANT_APPEND_VEC_OPERATION,
);
@ -1975,7 +1975,7 @@ pub mod tests {
let target_slot = slots.clone().nth(combine_into).unwrap_or(slots.start);
let accounts_to_write = StorableAccountsBySlot::new(
target_slot,
&accounts[..],
&accounts,
INCLUDE_SLOT_IN_HASH_TESTS,
);