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

Function execute_script_without_stack_limit

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

Source from the content-addressed store, hash-verified

125}
126
127pub fn execute_script_without_stack_limit(script: treepp::Script) -> ExecuteInfo {
128 execute_script_buf_optional_stack_limit(script.compile(), false)
129}
130
131pub fn execute_script_buf_without_stack_limit(script: bitcoin::ScriptBuf) -> ExecuteInfo {
132 execute_script_buf_optional_stack_limit(script, false)