Skip to main content

ExecutionStatus

type ExecutionStatus

The status of an executed Transaction

BCS

The BCS serialized form for this type is defined by the following ABNF:

```text execution-status = success / failure success = %d00 failure = %d01 execution-error (option u64) ```

type ExecutionStatus interface {
Destroy()
}

func ExecutionStatusFromBcs

func ExecutionStatusFromBcs(bcs []byte) (ExecutionStatus, error)

Create this type from BCS encoded bytes.

func ExecutionStatusFromJson

func ExecutionStatusFromJson(json string) (ExecutionStatus, error)

Create this type from JSON encoded string.