(script: bitcoin::ScriptBuf)
| 121 | } |
| 122 | |
| 123 | pub fn execute_script_buf(script: bitcoin::ScriptBuf) -> ExecuteInfo { |
| 124 | execute_script_buf_optional_stack_limit(script, true) |
| 125 | } |
| 126 | |
| 127 | pub fn execute_script_without_stack_limit(script: treepp::Script) -> ExecuteInfo { |
| 128 | execute_script_buf_optional_stack_limit(script.compile(), false) |
nothing calls this directly
no test coverage detected