Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 438 Bytes

ownerpausable.md

File metadata and controls

17 lines (10 loc) · 438 Bytes

An ownable contract allows the owner to pause and unpause the contract without a delay.

Only methods using the provided modifiers will be paused.

Functions:

Function pause() {#OwnerPausable-pause--}

Pause the contract. Revert if already paused.

Function unpause() {#OwnerPausable-unpause--}

Unpause the contract. Revert if already unpaused.