Skip to content

Commit

Permalink
remove unused tokens list
Browse files Browse the repository at this point in the history
  • Loading branch information
mendesfabio committed Jan 24, 2024
1 parent 76deac6 commit 0c38b95
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/mappings/vault.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ function handlePoolJoined(event: PoolBalanceChangedEvent): void {
return;
}

let tokensList = pool.tokensList;

let joinId = transactionHash.toHexString().concat(logIndex.toString());
let join = new JoinExit(joinId);

Expand Down Expand Up @@ -113,8 +111,6 @@ function handlePoolExited(event: PoolBalanceChangedEvent): void {
return;
}

let tokensList = pool.tokensList;

let exitId = transactionHash.toHexString().concat(logIndex.toString());
let exit = new JoinExit(exitId);

Expand Down

0 comments on commit 0c38b95

Please sign in to comment.