Skip to content

Commit b183833

Browse files
Code improvments
Removed `let _ =` on database transaction
1 parent ac011d7 commit b183833

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/transfer-crates.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ fn transfer(tx: &postgres::transaction::Transaction) {
8383
}
8484
}
8585

86-
let _ = tx.execute(
86+
tx.execute(
8787
"UPDATE crate_owners SET owner_id = $1
8888
WHERE owner_id = $2",
8989
&[&to.id, &from.id],

0 commit comments

Comments
 (0)