MCPcopy Index your code
hub / github.com/BitVM/BitVM / execute_script_buf

Function execute_script_buf

bitvm/src/lib.rs:123–125  ·  view source on GitHub ↗
(script: bitcoin::ScriptBuf)

Source from the content-addressed store, hash-verified

121}
122
123pub fn execute_script_buf(script: bitcoin::ScriptBuf) -> ExecuteInfo {
124 execute_script_buf_optional_stack_limit(script, true)
125}
126
127pub fn execute_script_without_stack_limit(script: treepp::Script) -> ExecuteInfo {
128 execute_script_buf_optional_stack_limit(script.compile(), false)

Callers

nothing calls this directly

Tested by

no test coverage detected