Function Engine.this

Initializes the script execution engine with the configured consensus limits.

this (
  ulong StackMaxTotalSize = 16384LU,
  ulong StackMaxItemSize = 512LU
) pure nothrow @nogc @safe;

Parameters

NameDescription
StackMaxTotalSize the maximum allowed stack size before a stack overflow, which would cause the script execution to fail. the script execution fails.
StackMaxItemSize maximum allowed size for a single item on the stack. If exceeded, script execution will fail during the syntactical validation of the script.