perf(db): use Into to encode StoredNibbles (#11350)

This commit is contained in:
DaniPopes
2024-09-30 23:59:03 +02:00
committed by GitHub
parent d6113e1040
commit 68f0b0a08f
2 changed files with 4 additions and 4 deletions

View File

@ -125,9 +125,9 @@ impl Encode for StoredNibbles {
// Delegate to the Compact implementation
fn encode(self) -> Self::Encoded {
let mut buf = Vec::with_capacity(self.0.len());
self.to_compact(&mut buf);
buf
// NOTE: This used to be `to_compact`, but all it does is append the bytes to the buffer,
// so we can just use the implementation of `Into<Vec<u8>>` to reuse the buffer.
self.0.into()
}
}