pub fn _pause()
Unconditionally sets the contract to the paused state.
1
use sway_libs::pausable::{_pause, _is_paused}; fn foo() { _pause(); assert(_is_paused()); }