fix linter errors

This commit is contained in:
Francisco Giordano
2019-01-24 13:18:09 -03:00
parent f3635e1517
commit e357592208
27 changed files with 50 additions and 55 deletions

View File

@ -14,7 +14,7 @@ contract Pausable is Initializable, PauserRole {
bool private _paused;
function initialize(address sender) public initializer {
PauserRole._initialize(sender);
PauserRole.initialize(sender);
_paused = false;
}