Skip to content

Commit

Permalink
Fix sei bug
Browse files Browse the repository at this point in the history
  • Loading branch information
prevostc committed Sep 24, 2024
1 parent 81e1dfd commit 3193626
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/clm/interaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ export function handleClmRewardPoolTransfer(event: RewardPoolTransferEvent): voi

const rewardPool = getClmRewardPool(event.address)
const clm = getCLM(rewardPool.clm)
if (!isClmInitialized(clm)) {
log.warning("CLM {} is not initialized, ignoring handleClmRewardPoolTransfer", [clm.id.toHexString()])
return
}
const managerAddress = clm.manager

const rewardPoolAddresses = clm.rewardPoolTokensOrder
Expand Down

0 comments on commit 3193626

Please sign in to comment.