Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update headers requests to use vec::with_capacity (#3314)
Description All the current comms requests for headers just a `Vec::new()` rather then a `Vec::with_capacity()` Motivation and Context We know the size of the result or can make a calculated guess about the size of the result so we can avoid resizing the vector the whole time by just using with_capacity. How Has This Been Tested? Run all unit tests.
- Loading branch information