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
13
14
15
use crate::internal_prelude::*;

pub const TRANSACTION_TRACKER_CREATE_IDENT: &str = "create";

pub const TRANSACTION_TRACKER_CREATE_EXPORT_NAME: &str = "create";

#[derive(Debug, Clone, ScryptoSbor)]
pub struct TransactionTrackerCreateInput {
    pub address_reservation: GlobalAddressReservation,
}

#[derive(Debug, Clone, ManifestSbor, ScryptoDescribe)]
pub struct TransactionTrackerCreateManifestInput {
    pub address_reservation: ManifestAddressReservation,
}