casper-contract 1.3.3

Library for developing Casper smart contracts.
Documentation
//! Contains definitions for panic and allocation error handlers, along with other `no_std` support
//! code.
#[cfg(feature = "test-support")]
use crate::contract_api::runtime;
#[cfg(feature = "test-support")]
use alloc::format;

/// A panic handler for use in a `no_std` environment which simply aborts the process.
#[panic_handler]
#[no_mangle]
pub fn panic(_info: &::core::panic::PanicInfo) -> ! {
    #[cfg(feature = "test-support")]
    runtime::print(&format!("Panic: {}", _info));
    ::core::intrinsics::abort();
}

/// An out-of-memory allocation error handler for use in a `no_std` environment which simply aborts
/// the process.
#[alloc_error_handler]
#[no_mangle]
pub fn oom(_: ::core::alloc::Layout) -> ! {
    ::core::intrinsics::abort();
}

#[lang = "eh_personality"]
extern "C" fn eh_personality() {}