Enumeration ResponseApplySnapshotChunk_Result

from enum tendermint.abci.ResponseApplySnapshotChunk.Result

Enumeration Members

ABORT: 2

Abort all snapshot restoration

from enum value: ABORT = 2;

ACCEPT: 1

Chunk successfully accepted

from enum value: ACCEPT = 1;

REJECT_SNAPSHOT: 5

Reject this snapshot, try others

from enum value: REJECT_SNAPSHOT = 5;

RETRY: 3

Retry chunk (combine with refetch and reject)

from enum value: RETRY = 3;

RETRY_SNAPSHOT: 4

Retry snapshot (combine with refetch and reject)

from enum value: RETRY_SNAPSHOT = 4;

UNKNOWN: 0

Unknown result, abort all snapshot restoration

from enum value: UNKNOWN = 0;