Skip to content

Commit

Permalink
Add script to update debt allowance
Browse files Browse the repository at this point in the history
We need to set debt allowance for Mezo Portal to the initial value.
  • Loading branch information
nkuba committed Aug 9, 2024
1 parent 1d63186 commit eb14d10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion solidity/deploy/33_update_debt_allowance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
export default func

func.tags = ["UpdateDebtAllowance"]
func.dependencies = ["UpgradeStBTC"]
func.dependencies = ["TransferOwnershipStBTC", "UpgradeStBTC"]
func.runAtTheEnd = true
func.skip = async (hre: HardhatRuntimeEnvironment): Promise<boolean> =>
Promise.resolve(
hre.network.name === "integration" || hre.network.name === "mainnet",
Expand Down

0 comments on commit eb14d10

Please sign in to comment.