Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Feb 20, 2025
1 parent 5323ed1 commit 3f8c815
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/torii/sqlite/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,8 @@ impl Sql {
for contract_address in contract_addresses {
self.executor.send(QueryMessage::other(
"INSERT OR IGNORE INTO transaction_contract (transaction_hash, contract_address) \
VALUES (?, ?)".to_string(),
VALUES (?, ?)"
.to_string(),
vec![transaction_hash.clone(), Argument::FieldElement(*contract_address)],
))?;

Check warning on line 582 in crates/torii/sqlite/src/lib.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/sqlite/src/lib.rs#L576-L582

Added lines #L576 - L582 were not covered by tests
}
Expand Down

0 comments on commit 3f8c815

Please sign in to comment.