Skip to content

Commit 896ee33

Browse files
committed
chore: fmt
1 parent c77b350 commit 896ee33

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ChainlinkOracle.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ contract ChainlinkOracle is IOracle {
5757
// It is used to price `VAULT_CONVERSION_SAMPLE` of the vault shares, so it requires dividing by that number,
5858
// hence the division by `VAULT_CONVERSION_SAMPLE` in the `SCALE_FACTOR` definition.
5959
// Verify that vault = 0 => vaultConversionSample = 1.
60-
require(address(vault) != address(0) || vaultConversionSample == 1, ErrorsLib.VAULT_CONVERSION_SAMPLE_IS_NOT_ONE);
60+
require(
61+
address(vault) != address(0) || vaultConversionSample == 1, ErrorsLib.VAULT_CONVERSION_SAMPLE_IS_NOT_ONE
62+
);
6163
VAULT = vault;
6264
VAULT_CONVERSION_SAMPLE = vaultConversionSample;
6365
BASE_FEED_1 = baseFeed1;

0 commit comments

Comments
 (0)