Skip to content

Commit

Permalink
core/state/pruner: remove unused error-return (ethereum#27273)
Browse files Browse the repository at this point in the history
  • Loading branch information
joohhnnn authored and devopsbo3 committed Nov 10, 2023
1 parent 9064a57 commit b373df4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions core/state/pruner/bloom.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,6 @@ func (bloom *stateBloom) Delete(key []byte) error { panic("not supported") }
// reports whether the key is contained.
// - If it says yes, the key may be contained
// - If it says no, the key is definitely not contained.
func (bloom *stateBloom) Contain(key []byte) (bool, error) {
return bloom.bloom.Contains(stateBloomHasher(key)), nil
func (bloom *stateBloom) Contain(key []byte) bool {
return bloom.bloom.Contains(stateBloomHasher(key))
}
4 changes: 1 addition & 3 deletions core/state/pruner/pruner.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,7 @@ func prune(snaptree *snapshot.Tree, root common.Hash, maindb ethdb.Database, sta
if _, exist := middleStateRoots[common.BytesToHash(checkKey)]; exist {
log.Debug("Forcibly delete the middle state roots", "hash", common.BytesToHash(checkKey))
} else {
if ok, err := stateBloom.Contain(checkKey); err != nil {
return err
} else if ok {
if stateBloom.Contain(checkKey) {
continue
}
}
Expand Down

0 comments on commit b373df4

Please sign in to comment.