Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed Oct 19, 2023
1 parent ff07ea7 commit aa03095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AprOracle/AprOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ contract AprOracle {
IVault vault = IVault(_vault);

// Check if the full profit has already been unlocked.
if(vault.fullProfitUnlockDate() <= block.timestamp) return 0;
if (vault.fullProfitUnlockDate() <= block.timestamp) return 0;

// Need the total assets in the vault post delta.
uint256 assets = uint256(int256(vault.totalAssets()) + _delta);
Expand Down

0 comments on commit aa03095

Please sign in to comment.