Skip to content

Commit

Permalink
fix: store event
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Sep 24, 2024
1 parent 9567da0 commit 4915e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/torii/core/src/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ impl Sql {

self.query_queue.enqueue(
"INSERT OR IGNORE INTO events (id, keys, data, transaction_hash, executed_at) VALUES \
(?, ?, ?, ?, ?)",
(?, ?, ?, ?, ?) RETURNING *",
vec![id, keys, data, hash, executed_at],
QueryType::StoreEvent,
);
Expand Down

0 comments on commit 4915e74

Please sign in to comment.