Make resetSpentToday and setDailyLimit internal functions

This commit is contained in:
Arseniy Klempner
2016-12-26 13:59:21 -08:00
parent 36fa2a72cf
commit a5602e7e7b
3 changed files with 12 additions and 4 deletions

View File

@ -12,4 +12,12 @@ contract DayLimitMock is DayLimit {
totalSpending += _value;
}
function setDailyLimit(uint _newLimit) external {
_setDailyLimit(_newLimit);
}
function resetSpentToday() external {
_resetSpentToday();
}
}