Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/ServiceManagerBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ abstract contract ServiceManagerBase is ServiceManagerBaseStorage {
* @dev No guarantee is made on uniqueness of each element in the returned array.
* The off-chain service should do that validation separately
*/
function getRestakeableStrategies() external view returns (address[] memory) {
function getRestakeableStrategies() external virtual view returns (address[] memory) {
uint256 quorumCount = _registryCoordinator.quorumCount();

if (quorumCount == 0) {
Expand Down Expand Up @@ -180,6 +180,7 @@ abstract contract ServiceManagerBase is ServiceManagerBaseStorage {
*/
function getOperatorRestakedStrategies(address operator)
external
virtual
view
returns (address[] memory)
{
Expand Down
Loading