Revert "internal/ethapi: compact db missing key starts with 0xff (#28207)"

This reverts commit 7de2afbbaf.
This commit is contained in:
devopsbo3 2023-11-10 12:27:53 -06:00 committed by GitHub
parent ba46f6ee27
commit f5c09b77a2

View file

@ -2202,17 +2202,9 @@ func (api *DebugAPI) ChaindbProperty(property string) (string, error) {
// ChaindbCompact flattens the entire key-value database into a single level, // ChaindbCompact flattens the entire key-value database into a single level,
// removing all unused slots and merging all keys. // removing all unused slots and merging all keys.
func (api *DebugAPI) ChaindbCompact() error { func (api *DebugAPI) ChaindbCompact() error {
cstart := time.Now() for b := byte(0); b < 255; b++ {
for b := 0; b <= 255; b++ { log.Info("Compacting chain database", "range", fmt.Sprintf("0x%0.2X-0x%0.2X", b, b+1))
var ( if err := api.b.ChainDb().Compact([]byte{b}, []byte{b + 1}); err != nil {
start = []byte{byte(b)}
end = []byte{byte(b + 1)}
)
if b == 255 {
end = nil
}
log.Info("Compacting database", "range", fmt.Sprintf("%#X-%#X", start, end), "elapsed", common.PrettyDuration(time.Since(cstart)))
if err := api.b.ChainDb().Compact(start, end); err != nil {
log.Error("Database compaction failed", "err", err) log.Error("Database compaction failed", "err", err)
return err return err
} }