Skip to content

Commit

Permalink
Merge pull request #1035 from nervosnetwork/fix-search-history-by-date
Browse files Browse the repository at this point in the history
fix: Search history by date
  • Loading branch information
ashchan authored Oct 30, 2019
2 parents 1435917 + 6df490a commit aaec8c2
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 aaec8c2

Please sign in to comment.