Skip to content

Commit

Permalink
fix: vesting service undefined error (#1892)
Browse files Browse the repository at this point in the history
  • Loading branch information
andyesp authored Sep 23, 2024
1 parent 77373c3 commit 002257d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/VestingService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ export class VestingService {
}

private static parseSubgraphVesting(vestingData: SubgraphVesting) {
const vestingContract = this.parseVestingData(vestingData)
const logs = this.parseVestingLogs(vestingData)
const vestingContract = VestingService.parseVestingData(vestingData)
const logs = VestingService.parseVestingLogs(vestingData)
return { ...vestingContract, logs }
}

Expand Down

0 comments on commit 002257d

Please sign in to comment.