Skip to content

CallLogMismatchError

Defined in: error/error.ts:53

Thrown when a resumed run diverges from its log — e.g. the operation at a given position is a different kind than what was recorded, or an action call targets a different action than last time. This means the script is not deterministic and cannot be safely replayed.

  • Error
new CallLogMismatchError(
position,
expected,
actual): CallLogMismatchError;

Defined in: error/error.ts:56

Parameter Type
position number
expected string
actual string

CallLogMismatchError

Error.constructor
readonly position: number;

Defined in: error/error.ts:54