Skip to content

Commit

Permalink
Fix CI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh9200 committed Jul 25, 2024
1 parent 361f930 commit 67c769f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,15 @@ export function handleWithdrawWithShares(event: WithdrawWithShares): void {
}

export function handleHarvest(event: Harvest): void {
let decoded = ethereum.decode(
const decoded = ethereum.decode(
"harvest(uint256,address,uint256)",
event.transaction.input
);

let poolId = constants.BIGINT_ZERO;

if (decoded) {
let decodedTuple = decoded.toTuple();
const decodedTuple = decoded.toTuple();
poolId = decodedTuple[0].toBigInt();

log.warning("[Harvest [AL-CVX]] PoolId Decoded: {}", [poolId.toString()]);
Expand Down

0 comments on commit 67c769f

Please sign in to comment.