multiversx-chain-vm 0.22.1

MultiversX VM implementation and tooling
Documentation
1
2
3
4
5
6
7
8
9
use super::TxFunctionName;

/// Structure used to accumulate errors through function calls.
#[derive(Clone, Debug)]
pub struct TxErrorTrace {
    pub function_name: TxFunctionName,
    pub error_trace_message: String,
    pub additional_info: Vec<String>,
}