Skip to content

Commit

Permalink
refactor: polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
kupermind committed Oct 22, 2024
1 parent b5b734c commit 0b24408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/contribute/ContributeServiceManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ contract ContributeServiceManager {
/// @param _safeMultisig Safe multisig address.
/// @param _fallbackHandler Multisig fallback handler address.
constructor(address _contributorsProxy, address _serviceManager, address _safeMultisig, address _fallbackHandler) {
// Check the zero address
// Check for zero addresses
if (_contributorsProxy == address(0) || _serviceManager == address(0) || _safeMultisig == address(0) ||
_fallbackHandler == address(0)) {
revert ZeroAddress();
Expand Down

0 comments on commit 0b24408

Please sign in to comment.