View Source:
↘ Derived Contracts: , , , , , , , , , , , , , , , , ,
Pausable
Contract Members
Constants & Variables
Events
event Pause(address account);
event Unpause(address account);
Modifiers
whenNotPaused
Modifier to make a function callable only when the contract is not paused.
modifier whenNotPaused() internal
Arguments
whenPaused
Modifier to make a function callable only when the contract is paused.
modifier whenPaused() internal
Arguments
Functions
_pause
Called by the owner to pause, triggers stopped state
function _pause() internal nonpayable whenNotPaused
Arguments
_unpause
Called by the owner to unpause, returns to normal state
function _unpause() internal nonpayable whenPaused
Arguments