(script: bitcoin::ScriptBuf)
| 129 | } |
| 130 | |
| 131 | pub fn execute_script_buf_without_stack_limit(script: bitcoin::ScriptBuf) -> ExecuteInfo { |
| 132 | execute_script_buf_optional_stack_limit(script, false) |
| 133 | } |
| 134 | |
| 135 | /// Executing a script on stack without `MAX_STACK_SIZE` limit is only for testing purposes \ |
| 136 | /// Don't use in production without the stack limit (i.e. `stack_limit` set to false) |
nothing calls this directly
no test coverage detected