Skip to content

Commit

Permalink
fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmer committed Apr 19, 2024
1 parent 35132e8 commit dd3d2f8
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions waku/waku_archive/driver/sqlite_driver/queries.nim
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,17 @@ proc createHistoryQueryIndex*(db: SqliteDatabase): DatabaseResult[void] =
return ok()

## Insert message
type InsertMessageParams* =
(seq[byte], seq[byte], Timestamp, seq[byte], seq[byte], seq[byte], int64, Timestamp)
type InsertMessageParams* = (
seq[byte],
seq[byte],
Timestamp,
seq[byte],
seq[byte],
seq[byte],
int64,
Timestamp,
seq[byte],
)

proc insertMessageQuery(table: string): SqlQueryStr =
return
Expand Down

0 comments on commit dd3d2f8

Please sign in to comment.