Skip to content

Commit

Permalink
add missing param
Browse files Browse the repository at this point in the history
  • Loading branch information
djeck1432 committed Sep 9, 2024
1 parent 158854a commit 470bf79
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/src/starknet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,12 @@ export const getVestingEvents = async (address: string) => {
if (timestamp < now && amount) {
acc.push({
amount: amount,
timestamp: timestamp,
is_claimable: true
});
} else {
acc.push({
timestamp: timestamp,
amount: amount,
is_claimable: false
});
Expand Down

0 comments on commit 470bf79

Please sign in to comment.