errors

package
v0.8.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 10, 2024 License: Apache-2.0 Imports: 2 Imported by: 14

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrDBCloseFailed             = errors.New("unable to close database")
	ErrScanGetValueFailed        = errors.New("unable to get value for key")
	ErrScanWorkerFailed          = errors.New("worker failed")
	ErrDecompressOutputMismatch  = errors.New("decompressed dictionary output does not match")
	ErrMaxEntries                = errors.New("max entries reached")
	ErrScanFailed                = errors.New("unable to scan")
	ErrNoEntriesFoundInNamespace = errors.New("found 0 entries for namespace")

	BadgerStorageErrs = []error{
		ErrScanGetValueFailed,
		ErrScanWorkerFailed,
		ErrDecompressOutputMismatch,
		ErrMaxEntries,
		ErrScanFailed,
		ErrNoEntriesFoundInNamespace,
	}
)

Badger Storage Errors

View Source
var (
	ErrBroadcastAlreadyExists      = errors.New("already broadcasting transaction")
	ErrBroadcastCommitUpdateFailed = errors.New("unable to commit broadcast update")
	ErrBroadcastIdentifierMismatch = errors.New(
		"unexpected transaction hash returned by broadcast",
	)

	BroadcastStorageErrs = []error{
		ErrBroadcastAlreadyExists,
		ErrBroadcastCommitUpdateFailed,
		ErrBroadcastIdentifierMismatch,
	}
)

Broadcast Storage Errors

View Source
var (
	ErrDuplicateCoinFound = errors.New("duplicate coin found")
	ErrCoinParseFailed    = errors.New("unable to parse amount for coin")
	ErrCoinNotFound       = errors.New("coin not found")

	CoinStorageErrs = []error{
		ErrDuplicateCoinFound,
		ErrCoinParseFailed,
		ErrCoinNotFound,
	}
)

Coin Storage Errors

View Source
var (
	ErrWriterCloseFailed  = errors.New("unable to close writer")
	ErrObjectDecodeFailed = errors.New("unable to decode object")
	ErrCopyBlockFailed    = errors.New("unable to copy block")
	ErrRawDecodeFailed    = errors.New("unable to decode raw bytes")

	CompressorErrs = []error{
		ErrWriterCloseFailed,
		ErrObjectDecodeFailed,
		ErrCopyBlockFailed,
		ErrRawDecodeFailed,
	}
)

Compressor Errors

View Source
var (
	ErrJobIdentifierNotFound = errors.New("identifier not found")
	ErrJobUpdateOldFailed    = errors.New("unable to update terminal job")
	ErrJobDoesNotExist       = errors.New("job does not exist")

	JobStorageErrs = []error{
		ErrJobIdentifierNotFound,
		ErrJobUpdateOldFailed,
		ErrJobDoesNotExist,
	}
)

Job Storage Errors

View Source
var (
	// ErrAddrExists is returned when key storage already
	// contains an address.
	ErrAddrExists             = errors.New("key already exists")
	ErrAddrNotFound           = errors.New("address not found")
	ErrParseKeyPairFailed     = errors.New("unable to parse key pair")
	ErrDetermineSigTypeFailed = errors.New("cannot determine signature type for payload")
	ErrNoAddrAvailable        = errors.New("no addresses available")

	KeyStorageErrs = []error{
		ErrAddrExists,
		ErrAddrNotFound,
		ErrParseKeyPairFailed,
		ErrDetermineSigTypeFailed,
		ErrNoAddrAvailable,
	}
)

Key Storage Errors

View Source
var (
	// ErrNegativeBalance is returned when an account
	// balance goes negative as the result of an operation.
	ErrNegativeBalance = errors.New("negative balance")

	// ErrInvalidLiveBalance is returned when an account's
	// live balance varies in a way that is inconsistent
	// with any balance exemption.
	ErrInvalidLiveBalance = errors.New("invalid live balance")

	// ErrBalancePruned is returned when the caller attempts
	// to retrieve a pruned balance.
	ErrBalancePruned = errors.New("balance pruned")

	// ErrBlockNil is returned when the block to lookup
	// a balance at is nil.
	ErrBlockNil = errors.New("block nil")

	// ErrAccountMissing is returned when a fetched
	// account does not exist.
	ErrAccountMissing = errors.New("account missing")

	// ErrInvalidChangeValue is returned when the change value
	// cannot be parsed.
	ErrInvalidChangeValue = errors.New("invalid change value")

	// ErrInvalidValue is returned when the value we are trying
	// to save cannot be parsed.
	ErrInvalidValue = errors.New("invalid value")

	ErrHelperHandlerMissing = errors.New("balance storage helper or handler is missing")

	ErrInvalidCurrency = errors.New("invalid currency")

	BalanceStorageErrs = []error{
		ErrNegativeBalance,
		ErrInvalidLiveBalance,
		ErrBalancePruned,
		ErrBlockNil,
		ErrAccountMissing,
		ErrInvalidChangeValue,
		ErrInvalidValue,
		ErrHelperHandlerMissing,
	}
)

Balance Storage Errors

View Source
var (
	// ErrHeadBlockNotFound is returned when there is no
	// head block found in BlockStorage.
	ErrHeadBlockNotFound = errors.New("head block not found")

	// ErrBlockNotFound is returned when a block is not
	// found in BlockStorage.
	ErrBlockNotFound = errors.New("block not found")

	// ErrDuplicateKey is returned when a key
	// cannot be stored because it is a duplicate.
	ErrDuplicateKey = errors.New("duplicate key")

	// ErrDuplicateTransactionHash is returned when a transaction
	// hash cannot be stored because it is a duplicate.
	ErrDuplicateTransactionHash = errors.New("duplicate transaction hash")

	ErrLastProcessedBlockPrecedesStart = errors.New(
		"last processed block is less than start index",
	)
	ErrTransactionHashContentsDecodeFailed = errors.New(
		"could not decode transaction hash contents",
	)
	ErrTransactionDeleteFailed = errors.New("could not remove transaction")
	ErrTransactionHashNotFound = errors.New(
		"saved blocks at transaction does not contain transaction hash",
	)
	ErrBlockDataDecodeFailed = errors.New(
		"unable to decode block data for transaction",
	)
	ErrTransactionNotFound            = errors.New("unable to find transaction")
	ErrTransactionDoesNotExistInBlock = errors.New("transaction does not exist in block")
	ErrOldestIndexMissing             = errors.New("oldest index missing")
	ErrCannotRemoveOldest             = errors.New("cannot remove oldest index")
	ErrCannotAccessPrunedData         = errors.New("cannot access pruned data")
	ErrNothingToPrune                 = errors.New("nothing to prune")

	BlockStorageErrs = []error{
		ErrHeadBlockNotFound,
		ErrBlockNotFound,
		ErrDuplicateKey,
		ErrDuplicateTransactionHash,
		ErrLastProcessedBlockPrecedesStart,
		ErrTransactionHashContentsDecodeFailed,
		ErrTransactionDeleteFailed,
		ErrTransactionHashNotFound,
		ErrBlockDataDecodeFailed,
		ErrTransactionNotFound,
		ErrTransactionDoesNotExistInBlock,
		ErrOldestIndexMissing,
		ErrCannotRemoveOldest,
		ErrCannotAccessPrunedData,
		ErrNothingToPrune,
	}
)

Block Storage Errors

Functions

func Err

func Err(err error) (bool, string)

Err takes an error as an argument and returns whether or not the error is one thrown by the storage along with the specific source of the error

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL