Skip to content

Commit

Permalink
duh: simplify WETH/BAL references
Browse files Browse the repository at this point in the history
  • Loading branch information
EndymionJkb committed Feb 12, 2025
1 parent 33de523 commit 013d175
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,12 @@ describeForkTest('ProtocolFeeController', 'mainnet', 21827132, function () {
});

before('setup contracts and parameters', async () => {
const wethTask = new Task('00000000-tokens', TaskMode.READ_ONLY);
const balTask = new Task('00000000-tokens', TaskMode.READ_ONLY);
const tokensTask = new Task('00000000-tokens', TaskMode.READ_ONLY);

const fork = getForkedNetwork(hre);

const WETH = wethTask.output({ network: fork }).WETH;
const BAL = balTask.output({ network: fork }).BAL;
const WETH = tokensTask.output({ network: fork }).WETH;
const BAL = tokensTask.output({ network: fork }).BAL;

tokenConfig = [
{
Expand Down

0 comments on commit 013d175

Please sign in to comment.