Skip to content

Commit

Permalink
fix: Search history by date
Browse files Browse the repository at this point in the history
  • Loading branch information
ashchan committed Oct 30, 2019
1 parent 1a77fd5 commit 6df490a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export class TransactionsService {
return [
`${
base[0]
} AND (CAST("tx"."timestamp") AS UNSIGNED BIG INT) >= :beginTimestamp AND CAST("tx"."timestamp") AS UNSIGNED BIG INT) < :endTimestamp)`,
} AND (CAST("tx"."timestamp" AS UNSIGNED BIG INT) >= :beginTimestamp AND CAST("tx"."timestamp" AS UNSIGNED BIG INT) < :endTimestamp)`,
{
lockHashes: params.lockHashes,
beginTimestamp,
Expand Down

0 comments on commit 6df490a

Please sign in to comment.