Skip to content

Commit

Permalink
fix: fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirka committed Dec 4, 2023
1 parent 0bb4f16 commit 7dde7e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/001-risk-fund-converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
vBNB,
wBNB,
proxyOwnerAddress,
} = addresses[network.name];
} = addresses[network.name as keyof Addresses];

comptrollers = [corePool, poolStableCoin, poolDeFi, poolGameFi, poolLiquidStakedBNB, poolTron];
assets = [[USDT], [USDT], [USDT], [USDT], [USDT], [USDT]];
Expand Down
1 change: 1 addition & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import "hardhat-deploy";
import "hardhat-gas-reporter";
import "solidity-coverage";
import "solidity-docgen";
import { HardhatUserConfig, task } from "hardhat/config";

//eslint-disable-next-line @typescript-eslint/no-var-requires
require("dotenv").config();
Expand Down

0 comments on commit 7dde7e1

Please sign in to comment.