MCPcopy Create free account
hub / github.com/BitVM/BitVM / ExecuteInfo

Class ExecuteInfo

bitvm/src/lib.rs:75–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73
74#[derive(Debug)]
75pub struct ExecuteInfo {
76 pub success: bool,
77 pub error: Option<ExecError>,
78 pub final_stack: FmtStack,
79 pub remaining_script: String,
80 pub last_opcode: Option<Opcode>,
81 pub stats: ExecStats,
82}
83
84impl fmt::Display for ExecuteInfo {
85 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected