fix linter errors
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user