Changes to remove warnings

This commit is contained in:
Alejandro Santander
2017-11-23 10:41:18 -03:00
parent 0eaa5f50ac
commit b50391862c
20 changed files with 23 additions and 20 deletions

View File

@ -15,7 +15,7 @@ contract LimitBalance {
* @dev Constructor that sets the passed value as a limit.
* @param _limit uint256 to represent the limit.
*/
function LimitBalance(uint256 _limit) {
function LimitBalance(uint256 _limit) public {
limit = _limit;
}