Skip to content

Commit

Permalink
fixed missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Robsonsjre committed May 20, 2021
1 parent b7f9e14 commit 8833a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/amm/OptionAMMPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ contract OptionAMMPool is AMM, IOptionAMMPool, CappedPool, FlashloanProtection {
} else {
diffDecimals = ivDecimals.sub(PRICING_DECIMALS);
}
return oracleIV.div(10**diffDecimals)
return oracleIV.div(10**diffDecimals);
}

function _getAdjustedIV(address optionAddress, uint256 currentIV) internal view returns (uint256 adjustedIV) {
Expand Down

0 comments on commit 8833a46

Please sign in to comment.