From fc43409afb770a145a973e2494fc89e5dfc02ec3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?James=20Lefr=C3=A8re?= Date: Mon, 9 Jul 2018 11:14:20 +0200 Subject: [PATCH] Remove return type * `startNextRewardPayout` appears to have no return value; correct the interface signature --- contracts/IColony.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/IColony.sol b/contracts/IColony.sol index b3f0570241..909802f1eb 100644 --- a/contracts/IColony.sol +++ b/contracts/IColony.sol @@ -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.