Packages

c

io.horizen.account.state

StateTransition

class StateTransition extends SparkzLogging with ExecutionContext

Linear Supertypes
ExecutionContext, SparkzLogging, StrictLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StateTransition
  2. ExecutionContext
  3. SparkzLogging
  4. StrictLogging
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StateTransition(view: StateDbAccountStateView, messageProcessors: Seq[MessageProcessor], blockGasPool: GasPool, blockContext: BlockContext, msg: Message)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val blockContext: BlockContext

    Contextual information

    Contextual information

    Definition Classes
    StateTransitionExecutionContext
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. var depth: Int

    Current call depth

    Current call depth

    Definition Classes
    StateTransitionExecutionContext
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def execute(invocation: Invocation): Array[Byte]

    Execute given invocation on the current call stack.

    Execute given invocation on the current call stack.

    Definition Classes
    StateTransitionExecutionContext
    Annotations
    @throws( classOf[InvalidMessageException] ) @throws( classOf[ExecutionFailedException] )
  11. def executeDepth(invocation: Invocation, additionalDepth: Int): Array[Byte]

    Manually advance call depth by given amount and continue execution with the given invocation.

    Manually advance call depth by given amount and continue execution with the given invocation. This is used to update the overall depth when returning from the EVM, in case multiple nested invocations happened there.

    Definition Classes
    ExecutionContext
    Annotations
    @throws( classOf[InvalidMessageException] ) @throws( classOf[ExecutionFailedException] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def log: Logger
    Attributes
    protected
    Definition Classes
    SparkzLogging
    Annotations
    @inline()
  16. val logger: Logger
    Attributes
    protected
    Definition Classes
    StrictLogging
  17. val msg: Message

    The original message currently being processed

    The original message currently being processed

    Definition Classes
    StateTransitionExecutionContext
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. def transition(): Array[Byte]

    Perform a state transition by applying the given message to the current state view.

    Perform a state transition by applying the given message to the current state view. Afterwards, the state will always be in a consistent state, possible outcomes are:

    • The message was applied successfully, return value is the data returned by the executed message processor
    • The message processor aborted by throwing any ExecutionFailedException (e.g. also ExecutionRevertedException). This means the message is valid but application failed. Any changes by the message processor are reverted, but the senders nonce is incremented and used gas is still paid.
    • Any other exception was thrown: Any and all changes are reverted. This means the message is invalid.
    Annotations
    @throws( classOf[InvalidMessageException] ) @throws( classOf[ExecutionFailedException] )
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from ExecutionContext

Inherited from SparkzLogging

Inherited from StrictLogging

Inherited from AnyRef

Inherited from Any

Ungrouped