File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import {
16
16
vip520 ,
17
17
} from "../../vips/vip-520/bscmainnet" ;
18
18
import VTOKEN_ABI from "./abi/LegacyPoolVToken.json" ;
19
- import RESILIENT_ORACLE_ABI from "./abi/ResilientOracle.json" ;
20
19
import ASBNB_ABI from "./abi/asBNB.json" ;
21
20
import COMPTROLLER_ABI from "./abi/comptroller.json" ;
22
21
@@ -29,7 +28,6 @@ const { bscmainnet } = NETWORK_ADDRESSES;
29
28
30
29
forking ( 51547465 , async ( ) => {
31
30
let comptroller : Contract ;
32
- let resilientOracle : Contract ;
33
31
let asBNB : Contract ;
34
32
let vasBNB : Contract ;
35
33
@@ -39,7 +37,6 @@ forking(51547465, async () => {
39
37
comptroller = new ethers . Contract ( asBNBMarketSpec . vToken . comptroller , COMPTROLLER_ABI , provider ) ;
40
38
asBNB = new ethers . Contract ( asBNBMarketSpec . vToken . underlying . address , ASBNB_ABI , provider ) ;
41
39
vasBNB = new ethers . Contract ( asBNBMarketSpec . vToken . address , VTOKEN_ABI , provider ) ;
42
- resilientOracle = new ethers . Contract ( bscmainnet . RESILIENT_ORACLE , RESILIENT_ORACLE_ABI , ethers . provider ) ;
43
40
44
41
await setMaxStalePeriodInChainlinkOracle (
45
42
bscmainnet . CHAINLINK_ORACLE ,
Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ import {
16
16
vip520 ,
17
17
} from "../../vips/vip-520/bsctestnet" ;
18
18
import VTOKEN_ABI from "./abi/LegacyPoolVToken.json" ;
19
- import MOCKTOKEN_ABI from "./abi/MockToken.json" ;
20
- import RESILIENT_ORACLE_ABI from "./abi/ResilientOracle.json" ;
21
19
import ASBNB_ABI from "./abi/asBNB.json" ;
22
20
import COMPTROLLER_ABI from "./abi/comptroller.json" ;
23
21
@@ -27,7 +25,6 @@ const { bsctestnet } = NETWORK_ADDRESSES;
27
25
28
26
forking ( 54514316 , async ( ) => {
29
27
let comptroller : Contract ;
30
- let resilientOracle : Contract ;
31
28
let asBNB : Contract ;
32
29
let vasBNB : Contract ;
33
30
@@ -37,7 +34,6 @@ forking(54514316, async () => {
37
34
comptroller = new ethers . Contract ( asBNBMarketSpec . vToken . comptroller , COMPTROLLER_ABI , provider ) ;
38
35
asBNB = new ethers . Contract ( asBNBMarketSpec . vToken . underlying . address , ASBNB_ABI , provider ) ;
39
36
vasBNB = new ethers . Contract ( asBNBMarketSpec . vToken . address , VTOKEN_ABI , provider ) ;
40
- resilientOracle = new ethers . Contract ( bsctestnet . RESILIENT_ORACLE , RESILIENT_ORACLE_ABI , ethers . provider ) ;
41
37
} ) ;
42
38
43
39
describe ( "Pre-VIP behavior" , async ( ) => {
You can’t perform that action at this time.
0 commit comments