Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ where
// branch node during a removal and then re-add that branch back during a later leaf addition.
// This is an optimization, but also a requirement inherited from multiproof generating, which
// can't know the order that leaf operations happen in.
let mut removed_accounts = Vec::new();
let mut removed_accounts = Vec::with_capacity(state.accounts.len() + results.len());

// Update account storage roots
let _enter =
Expand Down
Loading