mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Revert "internal/ethapi: compact db missing key starts with 0xff (#28207)"
This reverts commit 7de2afbbaf.
This commit is contained in:
parent
ba46f6ee27
commit
f5c09b77a2
1 changed files with 3 additions and 11 deletions
|
|
@ -2202,17 +2202,9 @@ func (api *DebugAPI) ChaindbProperty(property string) (string, error) {
|
|||
// ChaindbCompact flattens the entire key-value database into a single level,
|
||||
// removing all unused slots and merging all keys.
|
||||
func (api *DebugAPI) ChaindbCompact() error {
|
||||
cstart := time.Now()
|
||||
for b := 0; b <= 255; b++ {
|
||||
var (
|
||||
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 {
|
||||
for b := byte(0); b < 255; b++ {
|
||||
log.Info("Compacting chain database", "range", fmt.Sprintf("0x%0.2X-0x%0.2X", b, b+1))
|
||||
if err := api.b.ChainDb().Compact([]byte{b}, []byte{b + 1}); err != nil {
|
||||
log.Error("Database compaction failed", "err", err)
|
||||
return err
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue