Skip to content

Commit

Permalink
Fix clippy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vorot93 committed Sep 16, 2024
1 parent 27719b6 commit 5bcffff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/orm/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ impl<'db> Transaction<'db, RW> {
{
Ok(self.inner.put(
&self.inner.open_table(Some(T::NAME))?,
&key.encode(),
&value.encode(),
key.encode(),
value.encode(),
WriteFlags::UPSERT,
)?)
}
Expand Down

0 comments on commit 5bcffff

Please sign in to comment.