File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -8,21 +8,19 @@ import {IEjectionManager} from "./interfaces/IEjectionManager.sol";
8
8
abstract contract EjectionManagerStorage is IEjectionManager {
9
9
/// @notice The basis point denominator for the ejectable stake percent
10
10
uint16 internal constant BIPS_DENOMINATOR = 10_000 ;
11
-
12
11
/// @notice The max number of quorums
13
12
uint8 internal constant MAX_QUORUM_COUNT = 192 ;
14
13
15
- /// @notice the RegistryCoordinator contract that is the entry point for ejection
14
+ /// @inheritdoc IEjectionManager
16
15
IRegistryCoordinator public immutable registryCoordinator;
17
- /// @notice the StakeRegistry contract that keeps track of quorum stake
16
+ /// @inheritdoc IEjectionManager
18
17
IStakeRegistry public immutable stakeRegistry;
19
18
20
- /// @notice Addresses permissioned to eject operators under a ratelimit
19
+ /// @inheritdoc IEjectionManager
21
20
mapping (address => bool ) public isEjector;
22
-
23
- /// @notice Keeps track of the total stake ejected for a quorum
21
+ /// @inheritdoc IEjectionManager
24
22
mapping (uint8 => StakeEjection[]) public stakeEjectedForQuorum;
25
- /// @notice Ratelimit parameters for each quorum
23
+ /// @inheritdoc IEjectionManager
26
24
mapping (uint8 => QuorumEjectionParams) public quorumEjectionParams;
27
25
28
26
constructor (IRegistryCoordinator _registryCoordinator , IStakeRegistry _stakeRegistry ) {
You can’t perform that action at this time.
0 commit comments