Skip to content

Commit 6df490a

Browse files
committed
fix: Search history by date
1 parent 1a77fd5 commit 6df490a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/neuron-wallet/src/services/tx/transaction-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export class TransactionsService {
8181
return [
8282
`${
8383
base[0]
84-
} AND (CAST("tx"."timestamp") AS UNSIGNED BIG INT) >= :beginTimestamp AND CAST("tx"."timestamp") AS UNSIGNED BIG INT) < :endTimestamp)`,
84+
} AND (CAST("tx"."timestamp" AS UNSIGNED BIG INT) >= :beginTimestamp AND CAST("tx"."timestamp" AS UNSIGNED BIG INT) < :endTimestamp)`,
8585
{
8686
lockHashes: params.lockHashes,
8787
beginTimestamp,

0 commit comments

Comments
 (0)