Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid using pinned memory for Hash deserialization
During deserialization we create a temporary buffer, whcih is later converted to `PackedBytes` representation. There is no need fort hat intermediarey buffer to be backed by pinned memory (i.e. `ByteString`) This commit switches to using unpinned `ShortByteString` in order to reduce fragmentation of pinned memory due to deserialization of milllions of hashes on a running node
- Loading branch information