Skip to content

Commit

Permalink
fix: quick temporary fix (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevennevins authored Sep 13, 2024
1 parent 944f0e3 commit 6fb8a0c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/src/HelloWorldServiceManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ contract HelloWorldServiceManager is ECDSAServiceManagerBase, IHelloWorldService
function operatorHasMinimumWeight(
address operator
) public view returns (bool) {
return ECDSAStakeRegistry(stakeRegistry).getOperatorWeight(operator)
>= ECDSAStakeRegistry(stakeRegistry).minimumWeight();
return ECDSAStakeRegistry(stakeRegistry).operatorRegistered(operator);
}
}

0 comments on commit 6fb8a0c

Please sign in to comment.