Packages

c

org.bitcoins.core.script

ExecutionInProgressScriptProgram

case class ExecutionInProgressScriptProgram(txSignatureComponent: TxSigComponent, stack: List[ScriptToken], script: List[ScriptToken], originalScript: List[ScriptToken], altStack: List[ScriptToken], flags: Seq[ScriptFlag], lastCodeSeparator: Option[Int], codeSeparatorTapscriptIdx: Option[Int], validationWeightRemaining: Option[Long], conditionalCounter: ConditionalCounter) extends StartedScriptProgram with Product with Serializable

Type for a ScriptProgram that is currently being evaluated by the ScriptInterpreter.

lastCodeSeparator

The index of the last OP_CODESEPARATOR

conditionalCounter

Keeps track of where we are within a conditional tree.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExecutionInProgressScriptProgram
  2. Serializable
  3. Product
  4. Equals
  5. StartedScriptProgram
  6. ScriptProgram
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ExecutionInProgressScriptProgram(txSignatureComponent: TxSigComponent, stack: List[ScriptToken], script: List[ScriptToken], originalScript: List[ScriptToken], altStack: List[ScriptToken], flags: Seq[ScriptFlag], lastCodeSeparator: Option[Int], codeSeparatorTapscriptIdx: Option[Int], validationWeightRemaining: Option[Long], conditionalCounter: ConditionalCounter)

    lastCodeSeparator

    The index of the last OP_CODESEPARATOR

    conditionalCounter

    Keeps track of where we are within a conditional tree.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addCondition(condition: Boolean): ExecutionInProgressScriptProgram

    Should be called for every OP_IF and OP_NOTIF with whether the first (true) or second (false) branch should be taken.

  5. val altStack: List[ScriptToken]

    The alternative stack is used in some Script op codes.

    The alternative stack is used in some Script op codes.

    Definition Classes
    ExecutionInProgressScriptProgramScriptProgram
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. val codeSeparatorTapscriptIdx: Option[Int]
  9. val conditionalCounter: ConditionalCounter
  10. def decrementValidationWeightRemaining(): ExecutionInProgressScriptProgram
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def failExecution(error: ScriptError): ExecutedScriptProgram

    Sets a ScriptError on a given ScriptProgram.

    Sets a ScriptError on a given ScriptProgram.

    error

    the error that the program hit while being executed in the script interpreter

    returns

    the ExecutedScriptProgram with the given error set inside of the trait

    Definition Classes
    ExecutionInProgressScriptProgramScriptProgram
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. val flags: Seq[ScriptFlag]

    ScriptFlag that are run with the script.

    ScriptFlag that are run with the script. These flags indicate special conditions that a script needs to be run with. https://github.com/bitcoin/bitcoin/blob/master/src/script/interpreter.h#L31

    Definition Classes
    ExecutionInProgressScriptProgramScriptProgram
  15. def getAnnexHashOpt: Option[Sha256Digest]
    Definition Classes
    ScriptProgram
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def invertCondition(): StartedScriptProgram

    Should be called on for every OP_ELSE

  18. def isInExecutionBranch: Boolean

    Non-conditional opcodes should be executed only if this is true

  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. val lastCodeSeparator: Option[Int]

    The index of the last code separator WITH push operations in the original script

    The index of the last code separator WITH push operations in the original script

    Definition Classes
    ExecutionInProgressScriptProgramStartedScriptProgram
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. val originalScript: List[ScriptToken]

    The original script that was given.

    The original script that was given.

    Definition Classes
    ExecutionInProgressScriptProgramScriptProgram
  25. def productElementNames: Iterator[String]
    Definition Classes
    Product
  26. def removeCondition(): StartedScriptProgram

    Should be called on for every OP_ENDIF

  27. def removeFlags(): ExecutionInProgressScriptProgram

    Removes the flags on the given ScriptProgram

  28. def replaceFlags(newFlags: Seq[ScriptFlag]): ExecutionInProgressScriptProgram
  29. val script: List[ScriptToken]

    The script operations that need to still be executed.

    The script operations that need to still be executed.

    Definition Classes
    ExecutionInProgressScriptProgramScriptProgram
  30. def shouldExecuteNextOperation: Boolean

    ScriptInterpreter should look at the script head only if this is true.

    ScriptInterpreter should look at the script head only if this is true.

    Note that OP_IF, OP_NOTIF, OP_ELSE, and OP_ENDIF must be executed even if isInExecutionBranch is false as they must modify the states of trueCount and falseAndIgnoreCount.

  31. val stack: List[ScriptToken]

    The current state of the stack for execution of the ScriptProgram.

    The current state of the stack for execution of the ScriptProgram.

    Definition Classes
    ExecutionInProgressScriptProgramScriptProgram
  32. def stackTopIsFalse: Boolean

    Returns true if the stack top is false

    Returns true if the stack top is false

    Definition Classes
    ScriptProgram
  33. def stackTopIsTrue: Boolean

    Returns true if the stack top is true

    Returns true if the stack top is true

    Definition Classes
    ScriptProgram
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def tapLeafHashOpt: Option[Sha256Digest]

    Calculates the leaf hash if we have a tapscript, else returns None if we don't have a tapscript

    Calculates the leaf hash if we have a tapscript, else returns None if we don't have a tapscript

    Definition Classes
    ScriptProgram
  36. def taprootSerializationOptions: TaprootSerializationOptions
  37. def toExecutedProgram: ExecutedScriptProgram
  38. val txSignatureComponent: TxSigComponent

    This contains all relevant information for hashing and checking a ScriptSignature for a Transaction.

    This contains all relevant information for hashing and checking a ScriptSignature for a Transaction.

    Definition Classes
    ExecutionInProgressScriptProgramScriptProgram
  39. def updateAltStack(tokens: Seq[ScriptToken]): ExecutionInProgressScriptProgram
  40. def updateLastCodeSeparator(newLastCodeSeparator: Int): ExecutionInProgressScriptProgram
  41. def updateOriginalScript(tokens: Seq[ScriptToken]): ExecutionInProgressScriptProgram
  42. def updateScript(tokens: Seq[ScriptToken]): ExecutionInProgressScriptProgram
  43. def updateStack(tokens: Seq[ScriptToken]): ExecutionInProgressScriptProgram
  44. def updateStackAndScript(stack: Seq[ScriptToken], script: Seq[ScriptToken]): ExecutionInProgressScriptProgram
  45. def updateTapscriptCodeSeparatorIdx(newIdx: Int): ExecutionInProgressScriptProgram
  46. val validationWeightRemaining: Option[Long]
  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from StartedScriptProgram

Inherited from ScriptProgram

Inherited from AnyRef

Inherited from Any

Ungrouped