Skip to content

Commit

Permalink
Missing natspec
Browse files Browse the repository at this point in the history
  • Loading branch information
alcueca committed Apr 20, 2024
1 parent fa88a93 commit 494e31d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gnosissafe/GnosisSafeWrapperFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ contract GnosisSafeWrapperFactory {
emit LenderCreated(safe, _lender);
}

/// @dev Get the Gnosis Safe wrapper for a Gnosis Safe, deploying it if it doesn't exist.
/// @param safe Address of the Gnosis Safe.
function _getOrDeploy(address safe) internal returns (GnosisSafeWrapper _lender) {
_lender = lender(safe);
if (!_deployed(_lender)) _lender = _deploy(safe);
Expand Down

0 comments on commit 494e31d

Please sign in to comment.