2022-08-15 15:51:50 +00:00
|
|
|
# nimbus-eth1
|
|
|
|
# Copyright (c) 2021 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
|
|
|
type
|
2022-11-28 09:03:23 +00:00
|
|
|
HexaryError* = enum
|
2022-08-15 15:51:50 +00:00
|
|
|
NothingSerious = 0
|
|
|
|
|
|
|
|
AccountNotFound
|
|
|
|
AccountsNotSrictlyIncreasing
|
|
|
|
AccountRangesOverlap
|
2022-11-08 18:56:04 +00:00
|
|
|
LowerBoundAfterFirstEntry
|
|
|
|
LowerBoundProofError
|
2022-10-08 17:20:50 +00:00
|
|
|
NodeNotFound
|
2022-09-16 07:24:12 +00:00
|
|
|
RlpEncoding
|
|
|
|
SlotsNotSrictlyIncreasing
|
2022-09-30 08:22:14 +00:00
|
|
|
TrieLoopAlert
|
|
|
|
TrieIsEmpty
|
2022-11-28 09:03:23 +00:00
|
|
|
TrieIsLockedForPerusal
|
2022-11-25 14:56:42 +00:00
|
|
|
TooManyProcessedChunks
|
2022-11-16 23:51:06 +00:00
|
|
|
TooManySlotAccounts
|
2022-09-16 07:24:12 +00:00
|
|
|
|
2022-12-06 17:35:56 +00:00
|
|
|
# nearby/boundary proofs
|
|
|
|
NearbyExtensionError
|
|
|
|
NearbyBranchError
|
|
|
|
NearbyGarbledNode
|
|
|
|
NearbyNestingTooDeep
|
|
|
|
NearbyUnexpectedNode
|
|
|
|
NearbyFailed
|
|
|
|
NearbyEmptyPath
|
|
|
|
NearbyLeafExpected
|
|
|
|
NearbyDanglingLink
|
|
|
|
|
2022-09-16 07:24:12 +00:00
|
|
|
# import
|
2022-09-02 18:16:09 +00:00
|
|
|
DifferentNodeValueExists
|
2022-09-16 07:24:12 +00:00
|
|
|
ExpectedNodeKeyDiffers
|
2022-08-15 15:51:50 +00:00
|
|
|
Rlp2Or17ListEntries
|
|
|
|
RlpBlobExpected
|
|
|
|
RlpBranchLinkExpected
|
|
|
|
RlpExtPathEncoding
|
|
|
|
RlpNonEmptyBlobExpected
|
2022-09-16 07:24:12 +00:00
|
|
|
|
|
|
|
# interpolate
|
|
|
|
AccountRepairBlocked
|
|
|
|
InternalDbInconsistency
|
|
|
|
RightBoundaryProofFailed
|
2022-09-02 18:16:09 +00:00
|
|
|
RootNodeMismatch
|
|
|
|
RootNodeMissing
|
2022-08-15 15:51:50 +00:00
|
|
|
|
|
|
|
# bulk storage
|
|
|
|
AddBulkItemFailed
|
|
|
|
CannotOpenRocksDbBulkSession
|
|
|
|
CommitBulkItemsFailed
|
|
|
|
NoRocksDbBackend
|
|
|
|
UnresolvedRepairNode
|
2022-09-02 18:16:09 +00:00
|
|
|
OSErrorException
|
2022-11-16 23:51:06 +00:00
|
|
|
StateRootNotFound
|
2022-08-15 15:51:50 +00:00
|
|
|
|
|
|
|
# End
|
|
|
|
|