gstd::ext

Function panic

Source
pub fn panic(data: &str) -> !
Expand description

Panic

Function is completely free in terms of gas usage.

ยงExamples

use gcore::ext;

#[unsafe(no_mangle)]
extern "C" fn handle() {
    ext::panic("I decided to panic");
}