mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-07 22:43:56 -05:00
fix(trie): remove needless borrow in test helper
This commit is contained in:
@@ -272,7 +272,7 @@ mod tests {
|
||||
.map(|i| {
|
||||
let mut bytes = [0u8; 8];
|
||||
bytes.copy_from_slice(&i.to_be_bytes());
|
||||
Nibbles::unpack(&bytes)
|
||||
Nibbles::unpack(bytes)
|
||||
})
|
||||
.collect()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user