mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
fix more CI complaints
This commit is contained in:
parent
c94a9dd78b
commit
1b72c34485
2 changed files with 2 additions and 7 deletions
|
|
@ -259,10 +259,6 @@ type cachingDB struct {
|
|||
// Verkle specific fields
|
||||
// TODO ensure that this info is in the DB
|
||||
started, ended bool
|
||||
translatedRoots [32]common.Hash // hash of the translated root, for opening
|
||||
origRoots [32]common.Hash
|
||||
translationIndex int
|
||||
translatedRootsLock sync.RWMutex
|
||||
LastMerkleRoot common.Hash // root hash of the read-only base tree
|
||||
|
||||
addrToPoint *utils.PointCache
|
||||
|
|
|
|||
|
|
@ -63,7 +63,6 @@ func (trie *VerkleTrie) InsertMigratedLeaves(leaves []verkle.LeafNode) error {
|
|||
}
|
||||
|
||||
var (
|
||||
errInvalidProof = errors.New("invalid proof")
|
||||
errInvalidRootType = errors.New("invalid node type for root")
|
||||
|
||||
// WORKAROUND: this special error is returned if it has been
|
||||
|
|
|
|||
Loading…
Reference in a new issue