    /// @dev Modifier to restrict access of a function to an operator or owner
    modifier onlyOperator() {
        if (msg.sender != owner() || operator[msg.sender]) revert ErrInvalidOperator();
        _;
    }
    function test_wronModifierIImplementation() public {
        address operator = makeAddr("operator");
        liquidRon.updateOperator(operator, true);

        assertTrue(liquidRon.operator(operator));

        vm.startPrank(operator);
        vm.expectRevert(LiquidRon.ErrInvalidOperator.selector);
        liquidRon.harvest(1, consensusAddrs);
    }
    /// @dev Modifier to restrict access of a function to an operator or owner
    modifier onlyOperator() {
-       if (msg.sender != owner() || operator[msg.sender]) revert ErrInvalidOperator();
+       if (msg.sender != owner() && !operator[msg.sender]) revert ErrInvalidOperator();
        _;
    }
