Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirka committed Dec 20, 2023
1 parent afeffe0 commit 17e7a35
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions deploy/004-single-token-converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {

const SingleTokenConverter = await ethers.getContractFactory("SingleTokenConverter");

for (const singleTokenConverterName in baseAssets) {
const baseAsset = baseAssets[singleTokenConverterName];
for (const [singleTokenConverterName, baseAsset] of Object.entries(baseAssets)) {

let destinationAddress = (await ethers.getContract("PrimeLiquidityProvider")).address;
if (baseAsset == (await ethers.getContract("XVS")).address) {
Expand Down

0 comments on commit 17e7a35

Please sign in to comment.