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
|
|
|
|
HexaryDbError* = enum
|
|
|
|
NothingSerious = 0
|
|
|
|
|
|
|
|
AccountNotFound
|
|
|
|
AccountSmallerThanBase
|
|
|
|
AccountsNotSrictlyIncreasing
|
|
|
|
AccountRangesOverlap
|
2022-09-16 07:24:12 +00:00
|
|
|
RlpEncoding
|
|
|
|
SlotsNotSrictlyIncreasing
|
|
|
|
LoopAlert
|
|
|
|
|
|
|
|
# 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-08-15 15:51:50 +00:00
|
|
|
|
|
|
|
# End
|
|
|
|
|