Skip to content

Commit

Permalink
chore: update VIP number for funds VIP
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirka committed Sep 15, 2023
1 parent c038a61 commit 31eedf2
Show file tree
Hide file tree
Showing 18 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ethers } from "hardhat";

import { expectEvents } from "../../../src/utils";
import { forking, testVip } from "../../../src/vip-framework";
import { vip160Testnet } from "../../../vips/vip-160/vip-160-testnet";
import { vip170Testnet } from "../../../vips/vip-170/vip-170-testnet";
import COMPTROLLER_ABI from "./abi/comptroller.json";
import ERC20_ABI from "./abi/erc20.json";
import POOL_REGISTRY_ABI from "./abi/poolRegistry.json";
Expand Down Expand Up @@ -81,7 +81,7 @@ forking(33268000, () => {
});
});

testVip("Risk fund, shortfall, PSR, stage 1", vip160Testnet(), {
testVip("Risk fund, shortfall, PSR, stage 1", vip170Testnet(), {
callbackAfterExecution: async (txResponse: TransactionResponse) => {
await expectEvents(
txResponse,
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ethers } from "hardhat";

import { expectEvents } from "../../../src/utils";
import { forking, testVip } from "../../../src/vip-framework";
import { vip160 } from "../../../vips/vip-160/vip-160";
import { vip170 } from "../../../vips/vip-170/vip-170";
import COMPTROLLER_ABI from "./abi/comptroller.json";
import ERC20_ABI from "./abi/erc20.json";
import POOL_REGISTRY_ABI from "./abi/poolRegistry.json";
Expand Down Expand Up @@ -75,7 +75,7 @@ forking(31671700, () => {
});
});

testVip("Risk fund, shortfall, PSR, stage 1", vip160(), {
testVip("Risk fund, shortfall, PSR, stage 1", vip170(), {
callbackAfterExecution: async (txResponse: TransactionResponse) => {
await expectEvents(
txResponse,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const configureAccessControls = () => [
grant(SHORTFALL, "resumeAuctions()", PAUSE_GUARDIAN),
];

export const vip160Testnet = () => {
export const vip170Testnet = () => {
const meta = {
version: "v2",
title: "Configure shortfall, PSR, risk fund",
Expand Down
2 changes: 1 addition & 1 deletion vips/vip-160/vip-160.ts → vips/vip-170/vip-170.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const configureAccessControls = () => [
grant(SHORTFALL, "resumeAuctions()", PAUSE_GUARDIAN),
];

export const vip160 = () => {
export const vip170 = () => {
const meta = {
version: "v2",
title: "Configure shortfall, PSR, risk fund",
Expand Down

0 comments on commit 31eedf2

Please sign in to comment.