Versions in this module Expand all Collapse all v0 v0.8.17 Sep 1, 2022 v0.8.16 Aug 31, 2022 Changes in this version + var BloomBitsIndexPrefix = []byte("iB") + var CodePrefix = []byte("c") + var CodeToFetchPrefix = []byte("CP") + var SnapshotAccountPrefix = []byte("a") + var SnapshotStoragePrefix = []byte("o") + func AddCodeToFetch(db ethdb.KeyValueWriter, hash common.Hash) + func ClearAllSyncSegments(db ethdb.KeyValueStore) error + func ClearAllSyncStorageTries(db ethdb.KeyValueStore) error + func ClearPrefix(db ethdb.KeyValueStore, prefix []byte) error + func ClearSyncSegments(db ethdb.KeyValueStore, root common.Hash) error + func ClearSyncStorageTrie(db ethdb.KeyValueStore, root common.Hash) error + func DeleteAccountSnapshot(db ethdb.KeyValueWriter, hash common.Hash) + func DeleteBlock(db ethdb.KeyValueWriter, hash common.Hash, number uint64) + func DeleteBlockWithoutNumber(db ethdb.KeyValueWriter, hash common.Hash, number uint64) + func DeleteBloombits(db ethdb.Database, bit uint, from uint64, to uint64) + func DeleteBody(db ethdb.KeyValueWriter, hash common.Hash, number uint64) + func DeleteCanonicalHash(db ethdb.KeyValueWriter, number uint64) + func DeleteCode(db ethdb.KeyValueWriter, hash common.Hash) + func DeleteCodeToFetch(db ethdb.KeyValueWriter, hash common.Hash) + func DeleteHeader(db ethdb.KeyValueWriter, hash common.Hash, number uint64) + func DeleteHeaderNumber(db ethdb.KeyValueWriter, hash common.Hash) + func DeleteOfflinePruning(db ethdb.KeyValueStore) error + func DeletePopulateMissingTries(db ethdb.KeyValueStore) error + func DeletePruningDisabled(db ethdb.KeyValueStore) error + func DeleteReceipts(db ethdb.KeyValueWriter, hash common.Hash, number uint64) + func DeleteSnapshotBlockHash(db ethdb.KeyValueWriter) + func DeleteSnapshotRoot(db ethdb.KeyValueWriter) + func DeleteStorageSnapshot(db ethdb.KeyValueWriter, accountHash, storageHash common.Hash) + func DeleteTimeMarker(db ethdb.KeyValueStore, key []byte) error + func DeleteTrieNode(db ethdb.KeyValueWriter, hash common.Hash) + func DeleteTxLookupEntries(db ethdb.KeyValueWriter, hashes []common.Hash) + func DeleteTxLookupEntry(db ethdb.KeyValueWriter, hash common.Hash) + func FindCommonAncestor(db ethdb.Reader, a, b *types.Header) *types.Header + func HasBody(db ethdb.Reader, hash common.Hash, number uint64) bool + func HasCode(db ethdb.KeyValueReader, hash common.Hash) bool + func HasHeader(db ethdb.Reader, hash common.Hash, number uint64) bool + func HasPruningDisabled(db ethdb.KeyValueStore) (bool, error) + func HasReceipts(db ethdb.Reader, hash common.Hash, number uint64) bool + func HasTrieNode(db ethdb.KeyValueReader, hash common.Hash) bool + func InspectDatabase(db ethdb.Database, keyPrefix, keyStart []byte) error + func IsCodeKey(key []byte) (bool, []byte) + func IterateAccountSnapshots(db ethdb.Iteratee) ethdb.Iterator + func IterateStorageSnapshots(db ethdb.Iteratee, accountHash common.Hash) ethdb.Iterator + func NewCodeToFetchIterator(db ethdb.Iteratee) ethdb.Iterator + func NewDatabase(db ethdb.KeyValueStore) ethdb.Database + func NewKeyLengthIterator(it ethdb.Iterator, keyLen int) ethdb.Iterator + func NewLevelDBDatabase(file string, cache int, handles int, namespace string, readonly bool) (ethdb.Database, error) + func NewMemoryDatabase() ethdb.Database + func NewMemoryDatabaseWithCap(size int) ethdb.Database + func NewSyncSegmentsIterator(db ethdb.Iteratee, root common.Hash) ethdb.Iterator + func NewSyncStorageTriesIterator(db ethdb.Iteratee, seek []byte) ethdb.Iterator + func NewTable(db ethdb.Database, prefix string) ethdb.Database + func PopUncleanShutdownMarker(db ethdb.KeyValueStore) + func PushUncleanShutdownMarker(db ethdb.KeyValueStore) ([]uint64, uint64, error) + func ReadAcceptorTip(db ethdb.KeyValueReader) (common.Hash, error) + func ReadAccountSnapshot(db ethdb.KeyValueReader, hash common.Hash) []byte + func ReadAllCanonicalHashes(db ethdb.Iteratee, from uint64, to uint64, limit int) ([]uint64, []common.Hash) + func ReadAllHashes(db ethdb.Iteratee, number uint64) []common.Hash + func ReadBlock(db ethdb.Reader, hash common.Hash, number uint64) *types.Block + func ReadBloomBits(db ethdb.KeyValueReader, bit uint, section uint64, head common.Hash) ([]byte, error) + func ReadBody(db ethdb.Reader, hash common.Hash, number uint64) *types.Body + func ReadBodyRLP(db ethdb.Reader, hash common.Hash, number uint64) rlp.RawValue + func ReadCanonicalBodyRLP(db ethdb.Reader, number uint64) rlp.RawValue + func ReadCanonicalHash(db ethdb.Reader, number uint64) common.Hash + func ReadChainConfig(db ethdb.KeyValueReader, hash common.Hash) *params.ChainConfig + func ReadCode(db ethdb.KeyValueReader, hash common.Hash) []byte + func ReadDatabaseVersion(db ethdb.KeyValueReader) *uint64 + func ReadHeadBlock(db ethdb.Reader) *types.Block + func ReadHeadBlockHash(db ethdb.KeyValueReader) common.Hash + func ReadHeadHeaderHash(db ethdb.KeyValueReader) common.Hash + func ReadHeader(db ethdb.Reader, hash common.Hash, number uint64) *types.Header + func ReadHeaderNumber(db ethdb.KeyValueReader, hash common.Hash) *uint64 + func ReadHeaderRLP(db ethdb.Reader, hash common.Hash, number uint64) rlp.RawValue + func ReadLogs(db ethdb.Reader, hash common.Hash, number uint64) [][]*types.Log + func ReadOfflinePruning(db ethdb.KeyValueStore) (time.Time, error) + func ReadPopulateMissingTries(db ethdb.KeyValueStore) (time.Time, error) + func ReadPreimage(db ethdb.KeyValueReader, hash common.Hash) []byte + func ReadRawReceipts(db ethdb.Reader, hash common.Hash, number uint64) types.Receipts + func ReadReceipt(db ethdb.Reader, hash common.Hash, config *params.ChainConfig) (*types.Receipt, common.Hash, uint64, uint64) + func ReadReceipts(db ethdb.Reader, hash common.Hash, number uint64, config *params.ChainConfig) types.Receipts + func ReadReceiptsRLP(db ethdb.Reader, hash common.Hash, number uint64) rlp.RawValue + func ReadSnapshotBlockHash(db ethdb.KeyValueReader) common.Hash + func ReadSnapshotGenerator(db ethdb.KeyValueReader) []byte + func ReadSnapshotRoot(db ethdb.KeyValueReader) common.Hash + func ReadStorageSnapshot(db ethdb.KeyValueReader, accountHash, storageHash common.Hash) []byte + func ReadSyncRoot(db ethdb.KeyValueReader) (common.Hash, error) + func ReadTimeMarker(db ethdb.KeyValueStore, key []byte) (time.Time, error) + func ReadTransaction(db ethdb.Reader, hash common.Hash) (*types.Transaction, common.Hash, uint64, uint64) + func ReadTrieNode(db ethdb.KeyValueReader, hash common.Hash) []byte + func ReadTxLookupEntry(db ethdb.Reader, hash common.Hash) *uint64 + func UnpackSyncSegmentKey(keyBytes []byte) (common.Hash, []byte) + func UnpackSyncStorageTrieKey(keyBytes []byte) (common.Hash, common.Hash) + func UpdateUncleanShutdownMarker(db ethdb.KeyValueStore) + func WriteAcceptorTip(db ethdb.KeyValueWriter, hash common.Hash) error + func WriteAccountSnapshot(db ethdb.KeyValueWriter, hash common.Hash, entry []byte) + func WriteBlock(db ethdb.KeyValueWriter, block *types.Block) + func WriteBloomBits(db ethdb.KeyValueWriter, bit uint, section uint64, head common.Hash, ...) + func WriteBody(db ethdb.KeyValueWriter, hash common.Hash, number uint64, body *types.Body) + func WriteBodyRLP(db ethdb.KeyValueWriter, hash common.Hash, number uint64, rlp rlp.RawValue) + func WriteCanonicalHash(db ethdb.KeyValueWriter, hash common.Hash, number uint64) + func WriteChainConfig(db ethdb.KeyValueWriter, hash common.Hash, cfg *params.ChainConfig) + func WriteCode(db ethdb.KeyValueWriter, hash common.Hash, code []byte) + func WriteDatabaseVersion(db ethdb.KeyValueWriter, version uint64) + func WriteHeadBlockHash(db ethdb.KeyValueWriter, hash common.Hash) + func WriteHeadHeaderHash(db ethdb.KeyValueWriter, hash common.Hash) + func WriteHeader(db ethdb.KeyValueWriter, header *types.Header) + func WriteHeaderNumber(db ethdb.KeyValueWriter, hash common.Hash, number uint64) + func WriteOfflinePruning(db ethdb.KeyValueStore) error + func WritePopulateMissingTries(db ethdb.KeyValueStore) error + func WritePreimages(db ethdb.KeyValueWriter, preimages map[common.Hash][]byte) + func WritePruningDisabled(db ethdb.KeyValueStore) error + func WriteReceipts(db ethdb.KeyValueWriter, hash common.Hash, number uint64, ...) + func WriteSnapshotBlockHash(db ethdb.KeyValueWriter, blockHash common.Hash) + func WriteSnapshotGenerator(db ethdb.KeyValueWriter, generator []byte) + func WriteSnapshotRoot(db ethdb.KeyValueWriter, root common.Hash) + func WriteStorageSnapshot(db ethdb.KeyValueWriter, accountHash, storageHash common.Hash, entry []byte) + func WriteSyncRoot(db ethdb.KeyValueWriter, root common.Hash) error + func WriteSyncSegment(db ethdb.KeyValueWriter, root common.Hash, start []byte) error + func WriteSyncStorageTrie(db ethdb.KeyValueWriter, root common.Hash, account common.Hash) error + func WriteTimeMarker(db ethdb.KeyValueStore, key []byte) error + func WriteTrieNode(db ethdb.KeyValueWriter, hash common.Hash, node []byte) + func WriteTxLookupEntries(db ethdb.KeyValueWriter, number uint64, hashes []common.Hash) + func WriteTxLookupEntriesByBlock(db ethdb.KeyValueWriter, block *types.Block) + type KeyLengthIterator struct + func (it *KeyLengthIterator) Next() bool + type LegacyTxLookupEntry struct + BlockHash common.Hash + BlockIndex uint64 + Index uint64 + type NumberHash struct + Hash common.Hash + Number uint64 + func ReadAllHashesInRange(db ethdb.Iteratee, first, last uint64) []*NumberHash