Skip to content

Commit

Permalink
feat: change func visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyonline committed Dec 13, 2024
1 parent 49a2ec7 commit 797e1a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ynEIGEN/WithdrawalsProcessor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ contract WithdrawalsProcessor is IWithdrawalsProcessor, Initializable, AccessCon

/// @notice Checks if principal withdrawals should be processed
/// @return True if principal withdrawals should be processed, false otherwise
function shouldProcessPrincipalWithdrawals() public view returns (bool) {
function shouldProcessPrincipalWithdrawals() external view returns (bool) {
return _ids.completed != _ids.processed;
}

Expand Down

0 comments on commit 797e1a4

Please sign in to comment.