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

@ -862,7 +862,7 @@ impl TransactionSignedNoHash {
/// Recover signer from signature and hash _without ensuring that the signature has a low `s`
/// value_.
///
/// Re-uses a given buffer to avoid numerous reallocations when recovering batches. **Clears the
/// Reuses a given buffer to avoid numerous reallocations when recovering batches. **Clears the
/// buffer before use.**
///
/// Returns `None` if the transaction's signature is invalid, see also

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()
}
}