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

Function execute_script

bitvm/src/lib.rs:119–121  ·  view source on GitHub ↗
(script: treepp::Script)

Source from the content-addressed store, hash-verified

117}
118
119pub fn execute_script(script: treepp::Script) -> ExecuteInfo {
120 execute_script_buf_optional_stack_limit(script.compile(), true)
121}
122
123pub fn execute_script_buf(script: bitcoin::ScriptBuf) -> ExecuteInfo {
124 execute_script_buf_optional_stack_limit(script, true)