Anoma.Node.Transaction.Backends.ResultEvent (Anoma v0.29.0)

Summary

Types

t()

I hold the content of the Result Event, which conveys the result of the transaction candidate code execution on the Anoma VM to the Mempool engine.

Types

@type t() :: %Anoma.Node.Transaction.Backends.ResultEvent{
  tx_id: binary(),
  vm_result: {:ok, Noun.t()} | :error
}

I hold the content of the Result Event, which conveys the result of the transaction candidate code execution on the Anoma VM to the Mempool engine.

Fields

  • :tx_id - The transaction id.
  • :tx_result - VM execution result; either :error or an
                        {:ok, noun} tuple.