Enum ethcore::executed::CallError[][src]

pub enum CallError {
    TransactionNotFound,
    StatePruned,
    Exceptional,
    StateCorrupt,
    Execution(ExecutionError),
}

Result of executing the transaction.

Variants

Couldn't find the transaction in the chain.

Couldn't find requested block's state in the chain.

Couldn't find an amount of gas that didn't result in an exception.

Corrupt state.

Error executing.

Trait Implementations

impl PartialEq for CallError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for CallError
[src]

Formats the value using the given formatter. Read more

impl Clone for CallError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<ExecutionError> for CallError
[src]

Performs the conversion.

impl Display for CallError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for CallError

impl Sync for CallError