radix-engine-interface 1.3.1

The interface between system layer and VM layer, from the Radix DLT project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use radix_common::prelude::*;

pub const TEST_UTILS_BLUEPRINT: &str = "TestUtils";

pub const TEST_UTILS_PANIC_IDENT: &str = "panic";

#[derive(Debug, Clone, Eq, PartialEq, ScryptoSbor, ManifestSbor)]
pub struct TestUtilsPanicInput(pub String);

pub type TestUtilsPanicManifestInput = TestUtilsPanicInput;

pub type TestUtilsPanicOutput = ();