Skip to content

Commit f75104d

Browse files
committed
fix: fixed lint
1 parent 65969ce commit f75104d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

deploy/5-deploy-bnb-lst-oracles.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ const func: DeployFunction = async ({ getNamedAccounts, deployments, network }:
6464
block = await ethers.provider.getBlock("latest");
6565
const stakePoolContract = await ethers.getContractAt("IPStakePool", stkBNBStakePool);
6666
const exchangeRateData = await stakePoolContract.exchangeRate();
67-
let exchangeRate = exchangeRateData.totalWei.mul(ethers.utils.parseUnits("1", 18)).div(exchangeRateData.poolTokenSupply);
67+
let exchangeRate = exchangeRateData.totalWei
68+
.mul(ethers.utils.parseUnits("1", 18))
69+
.div(exchangeRateData.poolTokenSupply);
6870

6971
await deploy("StkBNBOracle", {
7072
from: deployer,

0 commit comments

Comments
 (0)