Skip to content

Commit

Permalink
Fix asset tx history start date (#2058)
Browse files Browse the repository at this point in the history
  • Loading branch information
hieronx authored Mar 27, 2024
1 parent 134530e commit 88c69bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion centrifuge-js/src/modules/pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2653,7 +2653,7 @@ export function getPoolsModule(inst: Centrifuge) {
`,
{
poolId,
from: from ? from.toISOString() : getDateMonthsFromNow(-1).toISOString(),
from: from ? from.toISOString() : getDateYearsFromNow(-10).toISOString(),
to: to ? to.toISOString() : new Date().toISOString(),
},
false
Expand Down

0 comments on commit 88c69bc

Please sign in to comment.