Skip to content

Commit

Permalink
Remove return type
Browse files Browse the repository at this point in the history
* `startNextRewardPayout` appears to have no return value; correct the interface signature
  • Loading branch information
JamesLefrere committed Jul 10, 2018
1 parent c32d16f commit fc43409
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/IColony.sol
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ contract IColony {

/// @notice Start next reward payout for `_token`. All funds in the reward pot for `_token` will become unavailable.
/// All tokens will be locked, and can be unlocked by calling `waiveRewardPayout` or `claimRewardPayout`.
/// @param _token Addess of the token used for reward payout
function startNextRewardPayout(address _token) public returns (uint256);
/// @param _token Address of the token used for reward payout
function startNextRewardPayout(address _token) public;

/// @notice Claim the reward payout at `_payoutId`. User needs to provide their reputation and colony-wide reputation
/// which will be proven via Merkle proof inside this function.
Expand Down

0 comments on commit fc43409

Please sign in to comment.