Skip to content

Commit 3bc5b0c

Browse files
committed
style: fix lint of comments
1 parent d473b84 commit 3bc5b0c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

contracts/helpers/BaseHarvester.sol

+4-2
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,17 @@ abstract contract BaseHarvester is IHarvester, AccessControl {
3636
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
3737

3838
/**
39-
* @notice Checks whether the `msg.sender` is trusted to update target exposure and do others non critical operations
39+
* @notice Checks whether the `msg.sender` is trusted to update
40+
* target exposure and do others non critical operations
4041
*/
4142
modifier onlyTrusted() {
4243
if (!isTrusted[msg.sender]) revert NotTrusted();
4344
_;
4445
}
4546

4647
/**
47-
* @notice Checks whether the `msg.sender` is trusted or guardian to update target exposure and do others non critical operations
48+
* @notice Checks whether the `msg.sender` is trusted or guardian to update
49+
* target exposure and do others non critical operations
4850
*/
4951
modifier onlyTrustedOrGuardian() {
5052
if (!isTrusted[msg.sender] && !accessControlManager.isGovernorOrGuardian(msg.sender))

contracts/helpers/GenericHarvester.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ contract GenericHarvester is BaseHarvester, IERC3156FlashBorrower, RouterSwapper
6666
}
6767

6868
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
69-
BUDGET HANDLING
69+
BUDGET HANDLING
7070
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
7171

7272
/**
@@ -92,7 +92,7 @@ contract GenericHarvester is BaseHarvester, IERC3156FlashBorrower, RouterSwapper
9292
}
9393

9494
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
95-
HARVEST
95+
HARVEST
9696
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
9797

9898
/// @notice Invests or divests from the yield asset associated to `yieldBearingAsset` based on the current exposure

foundry.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ src = 'contracts'
5151
gas_reports = ["*"]
5252

5353
[profile.dev.fuzz]
54-
runs = 2000
54+
runs = 200000
5555

5656
[profile.dev.invariant]
5757
runs = 100

0 commit comments

Comments
 (0)