Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit 6edc29e

Browse files
committed
prettier
1 parent 639cbc4 commit 6edc29e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/oracles/default/RedstoneAdapterPriceOracleWeETH.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ contract RedstoneAdapterPriceOracleWeETH is BasePriceOracle {
6363
uint256 underlyingDecimals = uint256(ERC20Upgradeable(underlying).decimals());
6464
return
6565
underlyingDecimals <= 18
66-
? uint256(oraclePrice) * (10 ** (18 - underlyingDecimals))
67-
: uint256(oraclePrice) / (10 ** (underlyingDecimals - 18));
66+
? uint256(oraclePrice) * (10**(18 - underlyingDecimals))
67+
: uint256(oraclePrice) / (10**(underlyingDecimals - 18));
6868
}
6969
}

0 commit comments

Comments
 (0)