Skip to content

Commit 65969ce

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ 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-
exchangeRate = exchangeRateData.totalWei.mul(ethers.utils.parseUnits("1", 18)).div(exchangeRateData.poolTokenSupply);
67+
let exchangeRate = exchangeRateData.totalWei.mul(ethers.utils.parseUnits("1", 18)).div(exchangeRateData.poolTokenSupply);
6868

6969
await deploy("StkBNBOracle", {
7070
from: deployer,

0 commit comments

Comments
 (0)