From 9b6155299c69b95486c619c365e0d478c0c84e6e Mon Sep 17 00:00:00 2001 From: Victoria Zotova Date: Mon, 20 Nov 2023 09:54:57 -0500 Subject: [PATCH] IApplicationWithOperator: removes optional `registerOperator` --- contracts/staking/IApplicationWithOperator.sol | 5 ----- 1 file changed, 5 deletions(-) diff --git a/contracts/staking/IApplicationWithOperator.sol b/contracts/staking/IApplicationWithOperator.sol index d68724f0..05879d21 100644 --- a/contracts/staking/IApplicationWithOperator.sol +++ b/contracts/staking/IApplicationWithOperator.sol @@ -40,9 +40,4 @@ interface IApplicationWithOperator is IApplication { /// if function reverts if there is a pending authorization decrease for /// the staking provider. function registerOperator(address operator) external; - - // TODO consider that? - // /// @notice Used by additional role (owner for example) to set operator address that will - // /// operate a node for the specified staking provider. - // function registerOperator(address stakingProvider, address operator) external; }