Skip to content

Commit

Permalink
Remove unused variable in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tsudmi committed Mar 19, 2021
1 parent a781950 commit 4fa0143
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/pool/addDeposit.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const { validatorParams } = require('./validatorParams');

const Pool = artifacts.require('Pool');
const StakedEthToken = artifacts.require('StakedEthToken');
const Oracles = artifacts.require('Oracles');
const Validators = artifacts.require('Validators');

const withdrawalCredentials =
Expand All @@ -32,7 +31,6 @@ contract('Pool (add deposit)', ([sender1, sender2, sender3, operator]) => {
stakedEthToken,
totalSupply,
poolBalance,
oracles,
activatedValidators,
pendingValidators;

Expand All @@ -53,7 +51,6 @@ contract('Pool (add deposit)', ([sender1, sender2, sender3, operator]) => {

pool = await Pool.at(contracts.pool);
stakedEthToken = await StakedEthToken.at(contracts.stakedEthToken);
oracles = await Oracles.at(contracts.oracles);

totalSupply = await stakedEthToken.totalSupply();
poolBalance = await balance.current(pool.address);
Expand Down

0 comments on commit 4fa0143

Please sign in to comment.