diff --git a/contracts/0.8.25/vaults/VaultDelegationLayer.sol b/contracts/0.8.25/vaults/VaultDelegationLayer.sol index 8095406e9..368539cb0 100644 --- a/contracts/0.8.25/vaults/VaultDelegationLayer.sol +++ b/contracts/0.8.25/vaults/VaultDelegationLayer.sol @@ -162,8 +162,6 @@ contract VaultDelegationLayer is VaultDashboard, IReportReceiver { } } - /// * * * * * PLUMBER FUNCTIONS * * * * * /// - function mint( address _recipient, uint256 _tokens @@ -176,8 +174,6 @@ contract VaultDelegationLayer is VaultDashboard, IReportReceiver { vaultHub.burnStethBackedByVault(address(stakingVault), _tokens); } - /// * * * * * VAULT CALLBACK * * * * * /// - // solhint-disable-next-line no-unused-vars function onReport(uint256 _valuation, int256 _inOutDelta, uint256 _locked) external { if (msg.sender != address(stakingVault)) revert OnlyVaultCanCallOnReportHook(); @@ -185,8 +181,6 @@ contract VaultDelegationLayer is VaultDashboard, IReportReceiver { managementDue += (_valuation * managementFee) / 365 / BP_BASE; } - /// * * * * * QUORUM FUNCTIONS * * * * * /// - function transferStakingVaultOwnership( address _newOwner ) public override onlyIfVotedBy(ownershipTransferCommittee(), 7 days) {