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