@@ -9,7 +9,6 @@ import { forking, testForkedNetworkVipCommands } from "src/vip-framework";
9
9
import vip476 , { BASE_VWETH , BASE_WETH , ETH_AMOUNT_RECEIVED , VTREASURY_BASE } from "../../vips/vip-476/bscmainnet" ;
10
10
import ERC20_ABI from "./abi/ERC20.json" ;
11
11
import VTOKEN_ABI from "./abi/vToken.json" ;
12
- import VTREASURY_ABI from "./abi/vTreasury.json" ;
13
12
14
13
// "mintBehalf(address,uint256)" internally executes comptroller.preMintHook(address(this), minter, mintAmount)
15
14
// and distribute reward tokens through "rewardsDistributor.distributeSupplierRewardToken(vToken, minter)"
@@ -28,12 +27,10 @@ forking(28615549, async () => {
28
27
let wethHolderSigner : SignerWithAddress ;
29
28
let wethBalanceForVWeth : BigNumber ;
30
29
let vWethBalanceForTreasury : BigNumber ;
31
- let treasury : Contract ;
32
30
33
31
before ( async ( ) => {
34
32
weth = new ethers . Contract ( BASE_WETH , ERC20_ABI , ethers . provider ) ;
35
33
vWeth = new ethers . Contract ( BASE_VWETH , VTOKEN_ABI , ethers . provider ) ;
36
- treasury = new ethers . Contract ( VTREASURY_BASE , VTREASURY_ABI , ethers . provider ) ;
37
34
wethBalanceForVWeth = await weth . balanceOf ( BASE_VWETH ) ;
38
35
vWethBalanceForTreasury = await vWeth . balanceOf ( VTREASURY_BASE ) ;
39
36
wethHolderSigner = await initMainnetUser ( wethHolder_address , ethers . utils . parseEther ( "1" ) ) ;
0 commit comments