Skip to content

Commit d3401ab

Browse files
committed
fix: update IEjectionManager to use new SlashingRegistryCoordinator
1 parent 79541b9 commit d3401ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/interfaces/IEjectionManager.sol

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.27;
33

4-
import {IRegistryCoordinator} from "./IRegistryCoordinator.sol";
4+
import {ISlashingRegistryCoordinator} from "./ISlashingRegistryCoordinator.sol";
55
import {IStakeRegistry} from "./IStakeRegistry.sol";
66

77
interface IEjectionManagerErrors {
@@ -66,11 +66,11 @@ interface IEjectionManager is IEjectionManagerErrors, IEjectionManagerEvents {
6666
/* STATE */
6767

6868
/*
69-
* @notice Returns the address of the registry coordinator contract.
70-
* @return The address of the registry coordinator.
69+
* @notice Returns the address of the slashing registry coordinator contract.
70+
* @return The address of the slashing registry coordinator.
7171
* @dev This value is immutable and set during contract construction.
7272
*/
73-
function registryCoordinator() external view returns (IRegistryCoordinator);
73+
function slashingRegistryCoordinator() external view returns (ISlashingRegistryCoordinator);
7474

7575
/*
7676
* @notice Returns the address of the stake registry contract.

0 commit comments

Comments
 (0)