pub fn _unpause()
Expand description
Unconditionally sets the contract to the unpaused state.
Number of Storage Accesses
- Writes:
1
Examples
use sway_libs::pausable::{_unpause, _is_paused};
fn foo() {
_unpause();
assert(!_is_paused());
}