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 DayLimit {
* @dev Constructor that sets the passed value as a dailyLimit.
* @param _limit uint256 to represent the daily limit.
*/
function DayLimit(uint256 _limit) {
function DayLimit(uint256 _limit) public {
dailyLimit = _limit;
lastDay = today();
}