Skip to content

Commit

Permalink
Fix shared mev escrow constructor docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
tsudmi committed May 31, 2024
1 parent 1c19691 commit 4721d7d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion contracts/vaults/gnosis/mev/GnoSharedMevEscrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ import {Errors} from '../../../libraries/Errors.sol';
contract GnoSharedMevEscrow is ISharedMevEscrow {
IVaultsRegistry private immutable _vaultsRegistry;

/// @dev Constructor
/**
* @dev Constructor
* @param vaultsRegistry The address of the VaultsRegistry contract
*/
constructor(address vaultsRegistry) {
_vaultsRegistry = IVaultsRegistry(vaultsRegistry);
}
Expand Down

0 comments on commit 4721d7d

Please sign in to comment.