Skip to content

Commit

Permalink
fix: deployVault task
Browse files Browse the repository at this point in the history
  • Loading branch information
naddison36 committed Jul 12, 2021
1 parent 1fc2f60 commit 684fb44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tasks/deployFeeders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ task("deployVault", "Deploy Feeder Pool with boosted dual vault")
boosted: taskArgs.boosted,
name: taskArgs.name,
symbol: taskArgs.symbol,
priceCoeff: BN.from(taskArgs.price),
priceCoeff: simpleToExactAmount(taskArgs.price),
stakingToken: stakingTokenAddress,
rewardToken: rewardToken.address,
dualRewardToken: dualRewardToken?.address,
Expand Down
6 changes: 3 additions & 3 deletions test-fork/feeders/feeders-musd-alchemix.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ import {
Liquidator,
LiquidatorProxy__factory,
Liquidator__factory,
RewardsDistributorEth,
RewardsDistributorEth__factory,
} from "types/generated"
import { AlchemixIntegration__factory } from "types/generated/factories/AlchemixIntegration__factory"
import { IAlchemixStakingPools__factory } from "types/generated/factories/IAlchemixStakingPools__factory"
import { RewardsDistributorEth__factory } from "types/generated/factories/RewardsDistributorEth__factory"
import { IAlchemixStakingPools } from "types/generated/IAlchemixStakingPools"
import { RewardsDistributorEth } from "types/generated/RewardsDistributorEth"

const governorAddress = "0xF6FF1F7FCEB2cE6d26687EaaB5988b445d0b94a2"
const deployerAddress = "0xb81473f20818225302b8fffb905b53d58a793d84"
Expand Down Expand Up @@ -183,7 +183,7 @@ context("alUSD Feeder Pool integration to Alchemix", () => {
boosted: true,
name: "v-mUSD/alUSD fPool Vault",
symbol: "v-fPmUSD/alUSD",
priceCoeff: BN.from(1),
priceCoeff: simpleToExactAmount(1),
stakingToken: alUsdFp.address,
rewardToken: MTA.address,
}
Expand Down

0 comments on commit 684fb44

Please sign in to comment.