# OwnerPausable

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:

* [`pause()`](#OwnerPausable-pause--)
* [`unpause()`](#OwnerPausable-unpause--)

## Function `pause()` <a href="#ownerpausable-pause" id="ownerpausable-pause"></a>

Pause the contract. Revert if already paused.

## Function `unpause()` <a href="#ownerpausable-unpause" id="ownerpausable-unpause"></a>

Unpause the contract. Revert if already unpaused.
