Skip to content

Commit

Permalink
fix: fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
web3rover committed Oct 7, 2024
1 parent d8b092e commit b0c4089
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
3 changes: 2 additions & 1 deletion deploy/002-interest-rate-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
};

func.tags = ["InterestRateModel"];
func.skip = async hre => hre.network.name !== "hardhat" && hre.network.name !== "bscmainnet" && hre.network.name !== "bsctestnet";
func.skip = async hre =>
hre.network.name !== "hardhat" && hre.network.name !== "bscmainnet" && hre.network.name !== "bsctestnet";

export default func;
2 changes: 1 addition & 1 deletion deployments/bscmainnet/InterestRateModelVBNB.json
Original file line number Diff line number Diff line change
Expand Up @@ -433,4 +433,4 @@
"storage": [],
"types": null
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,11 @@
"userdoc",
"evm.gasEstimates"
],
"": [
"ast"
]
"": ["ast"]
}
},
"metadata": {
"useLiteralContent": true
}
}
}
}
2 changes: 1 addition & 1 deletion deployments/bsctestnet/InterestRateModelVBNB.json
Original file line number Diff line number Diff line change
Expand Up @@ -433,4 +433,4 @@
"storage": [],
"types": null
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,11 @@
"userdoc",
"evm.gasEstimates"
],
"": [
"ast"
]
"": ["ast"]
}
},
"metadata": {
"useLiteralContent": true
}
}
}
}

0 comments on commit b0c4089

Please sign in to comment.