mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: fix all the obvious clippy warnings (#1520)
This commit is contained in:
@ -147,7 +147,7 @@ where
|
||||
crsr.append(k, v).expect("submit");
|
||||
}
|
||||
|
||||
tx.inner.commit().unwrap();
|
||||
tx.inner.commit().unwrap()
|
||||
});
|
||||
},
|
||||
)
|
||||
@ -171,7 +171,7 @@ where
|
||||
crsr.insert(k, v).expect("submit");
|
||||
}
|
||||
|
||||
tx.inner.commit().unwrap();
|
||||
tx.inner.commit().unwrap()
|
||||
});
|
||||
},
|
||||
)
|
||||
@ -241,7 +241,7 @@ where
|
||||
crsr.append_dup(k, v).expect("submit");
|
||||
}
|
||||
|
||||
tx.inner.commit().unwrap();
|
||||
tx.inner.commit().unwrap()
|
||||
});
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user