Skip to content

Commit

Permalink
fix: Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
netrome committed Oct 30, 2024
1 parent 373b54b commit b23e4be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/storage/src/blueprint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ where
column: S::Column,
) -> BoxedIter<'a, StorageResult<Option<M::OwnedValue>>> {
let keys = keys
.map(|key| Self::KeyCodec::encode(&key).as_bytes().into_owned())
.map(|key| Self::KeyCodec::encode(key).as_bytes().into_owned())
.into_boxed();

storage
Expand Down

0 comments on commit b23e4be

Please sign in to comment.