ProposalExecutorResult defines types of proposal executor results.

from enum cosmos.group.v1.ProposalExecutorResult

Enumeration Members

Enumeration Members

FAILURE: 3

The executor returned an error and proposed action didn't update state.

from enum value: PROPOSAL_EXECUTOR_RESULT_FAILURE = 3;

NOT_RUN: 1

We have not yet run the executor.

from enum value: PROPOSAL_EXECUTOR_RESULT_NOT_RUN = 1;

SUCCESS: 2

The executor was successful and proposed action updated state.

from enum value: PROPOSAL_EXECUTOR_RESULT_SUCCESS = 2;

UNSPECIFIED: 0

An empty value is not allowed.

from enum value: PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED = 0;