Skip to content

Commit

Permalink
update(GaugeController.sol): removing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kamescg committed Jun 2, 2022
1 parent cf359c9 commit fdf3df1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions contracts/GaugeController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ contract GaugeController is IGaugeController, Manageable {
emit GaugeDecreased(msg.sender, _gauge, _amount);
}

/// @TODO: Add Governance/Executive authorization modifier/function.
/**
* @notice Add new gauge with "1e18" scale to the GaugeController.
* @param _gauge Address of the Gauge
Expand All @@ -242,7 +241,6 @@ contract GaugeController is IGaugeController, Manageable {
_addGaugeWithScale(_gauge, 1 ether);
}

/// @TODO: Add Governance/Executive authorization modifier/function.
/**
* @notice Add new gauge and target scale to the GaugeController.
* @param _gauge Address of new Gauge
Expand All @@ -252,7 +250,6 @@ contract GaugeController is IGaugeController, Manageable {
_addGaugeWithScale(_gauge, _scale);
}

/// @TODO: Add Governance/Executive authorization modifier/function.
/**
* @notice Remove gauge from the GaugeController.
* @param _gauge Address of existing Gauge
Expand All @@ -277,7 +274,6 @@ contract GaugeController is IGaugeController, Manageable {
emit GaugeRewardSet(_gaugeReward);
}

/// @TODO: Add Governance/Executive authorization modifier/function.
/**
* @notice Set Gauge target scale.
* @param _gauge Address of existing Gauge
Expand Down

0 comments on commit fdf3df1

Please sign in to comment.