Skip to content

Commit

Permalink
chore: fix kinship handler on polter
Browse files Browse the repository at this point in the history
  • Loading branch information
cinnabarhorse committed Dec 7, 2024
1 parent 3a05c02 commit 33ba39e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/mappings/polter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -466,9 +466,10 @@ export function handleExperienceTransfer(event: ExperienceTransfer): void {
// handler: handleAavegotchiInteract

export function handleAavegotchiInteract(event: AavegotchiInteract): void {
if (event.block.number.le(BigInt.fromI32(40000000))) {
return;
}
//we used this on polygon to speed up syncing
// if (event.block.number.le(BigInt.fromI32(40000000))) {
// return;
// }

let gotchi = getOrCreateAavegotchi(
event.params._tokenId.toString(),
Expand Down

0 comments on commit 33ba39e

Please sign in to comment.