Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
qwer951123 committed Oct 8, 2023
1 parent 9a97f1f commit 465a1a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/src/history/fetchers/earn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export class Earns extends BaseHistoryFetcher<EarnFetchParams> {
.concat(payoutRewards)
.concat(withdrawDexShares)
.concat(depositDexShares)
.sort((a, b) => (new Date(b.data.timestamp) < new Date(a.data.timestamp) ? -1 : 1))
.sort((a, b) => (new Date(b.data.timestamp) < new Date(a.data.timestamp) ? -1 : 1));
}

private getPoolId = (pool?: string) => {
Expand Down

0 comments on commit 465a1a5

Please sign in to comment.