Skip to content

Commit 7b25015

Browse files
committed
update comments
1 parent 8c5ad8e commit 7b25015

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/strategies/routing_logic/SimpleERC4626Logic.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ contract SimpleERC4626Logic is AbstractRoutingLogic {
2424
/// @inheritdoc AbstractRoutingLogic
2525
/// @notice Pulls tokens by withdrawing from the ERC4626 vault
2626
/// @param token The token to pull (must match vault's asset)
27-
/// @param fundOwner Not used - this contract owns the shares
27+
/// @param fundOwner The owner of the shares
2828
/// @param amount The amount of underlying assets to withdraw
2929
/// @param strict If true, must withdraw exact amount; if false, withdraw available balance
3030
function pullLogic(IERC20 token, address fundOwner, uint amount, bool strict) external override returns (uint pulled) {
@@ -43,7 +43,7 @@ contract SimpleERC4626Logic is AbstractRoutingLogic {
4343
/// @inheritdoc AbstractRoutingLogic
4444
/// @notice Pushes tokens by depositing into the ERC4626 vault
4545
/// @param token The token to push (must match vault's asset)
46-
/// @param fundOwner Not used - this contract receives the shares
46+
/// @param fundOwner The owner of the shares
4747
/// @param amount The amount of assets to deposit
4848
function pushLogic(IERC20 token, address fundOwner, uint amount) external override returns (uint pushed) {
4949
require(address(token) == address(ASSET), "SimpleERC4626Logic/InvalidToken");
@@ -69,7 +69,7 @@ contract SimpleERC4626Logic is AbstractRoutingLogic {
6969
/// @inheritdoc AbstractRoutingLogic
7070
/// @notice Returns the underlying asset balance available from this contract's vault shares
7171
/// @param token The token to check (must match vault's asset)
72-
/// @param fundOwner Not used - this contract owns the shares
72+
/// @param fundOwner The owner of the shares
7373
/// @return balance The amount of underlying assets this contract can withdraw
7474
function balanceLogic(IERC20 token, address fundOwner) external view override returns (uint balance) {
7575
require(address(token) == address(ASSET), "SimpleERC4626Logic/InvalidToken");

0 commit comments

Comments
 (0)