Skip to content

Commit cb2b334

Browse files
add overrides (#302)
Co-authored-by: steven <[email protected]>
1 parent 74438b7 commit cb2b334

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ServiceManagerBase.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ abstract contract ServiceManagerBase is ServiceManagerBaseStorage {
146146
* @dev No guarantee is made on uniqueness of each element in the returned array.
147147
* The off-chain service should do that validation separately
148148
*/
149-
function getRestakeableStrategies() external view returns (address[] memory) {
149+
function getRestakeableStrategies() external virtual view returns (address[] memory) {
150150
uint256 quorumCount = _registryCoordinator.quorumCount();
151151

152152
if (quorumCount == 0) {
@@ -180,6 +180,7 @@ abstract contract ServiceManagerBase is ServiceManagerBaseStorage {
180180
*/
181181
function getOperatorRestakedStrategies(address operator)
182182
external
183+
virtual
183184
view
184185
returns (address[] memory)
185186
{

0 commit comments

Comments
 (0)