from enum tendermint.abci.ResponseApplySnapshotChunk.Result
Abort all snapshot restoration
from enum value: ABORT = 2;
Chunk successfully accepted
from enum value: ACCEPT = 1;
Reject this snapshot, try others
from enum value: REJECT_SNAPSHOT = 5;
Retry chunk (combine with refetch and reject)
from enum value: RETRY = 3;
Retry snapshot (combine with refetch and reject)
from enum value: RETRY_SNAPSHOT = 4;
Unknown result, abort all snapshot restoration
from enum value: UNKNOWN = 0;
Generated
from enum tendermint.abci.ResponseApplySnapshotChunk.Result