From 0e7dd8591ea3f6a6f16dbbc5304bab8108f5da28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Pr=C3=A9vost?= <998369+prevostc@users.noreply.github.com> Date: Wed, 3 Jul 2024 10:10:54 +0200 Subject: [PATCH] Fix format --- schema.graphql | 2 +- src/clm/interaction.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/schema.graphql b/schema.graphql index 360d8e8..9380090 100644 --- a/schema.graphql +++ b/schema.graphql @@ -385,7 +385,7 @@ type CLM @entity { "The strategy of the CLM. The strategy is responsible for managing the CLM's assets." strategy: ClmStrategy! """ - The reward pool of the CLM. + The reward pool of the CLM. The reward pool is where the CLM's earnings are sent if the ClmManager does not automatically compound. It only makes sense to have one reward pool per CLM, but it is possible to have multiple by design. """ diff --git a/src/clm/interaction.ts b/src/clm/interaction.ts index cfc7d45..afa974e 100644 --- a/src/clm/interaction.ts +++ b/src/clm/interaction.ts @@ -75,7 +75,7 @@ export function handleRewardPoolTransfer(event: RewardPoolTransferEvent): void { const rewardPool = getClmRewardPool(event.address) const clm = getCLM(rewardPool.clm) const managerAddress = clm.manager - + const rewardPoolAddresses = clm.rewardPoolTokens let isRewardPoolFrom = false let isRewardPoolTo = false