From 57889e263855fa0327709a899209a12ca48c5059 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 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/contracts/staking/IApplicationWithOperator.sol b/contracts/staking/IApplicationWithOperator.sol index d68724f0..84a485d4 100644 --- a/contracts/staking/IApplicationWithOperator.sol +++ b/contracts/staking/IApplicationWithOperator.sol @@ -41,8 +41,4 @@ interface IApplicationWithOperator is IApplication { /// 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; }