forked from forks/go-ethereum
Here I am adding a config option and geth flag (`--history.chain`) for configuring history pruning. There are two options available: - `--history.chain all` is the default and will keep all history like before. - `--history.chain postmerge` will configure the history cutoff point to the merge block. The option doesn't actually do anything right now, but we need it as a precursor for other history pruning changes.
90 lines
2.5 KiB
Go
90 lines
2.5 KiB
Go
// Copyright 2025 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package ethconfig
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/params"
|
|
)
|
|
|
|
// HistoryMode configures history pruning.
|
|
type HistoryMode uint32
|
|
|
|
const (
|
|
// AllHistory (default) means that all chain history down to genesis block will be kept.
|
|
AllHistory HistoryMode = iota
|
|
|
|
// PostMergeHistory sets the history pruning point to the merge activation block.
|
|
PostMergeHistory
|
|
)
|
|
|
|
func (m HistoryMode) IsValid() bool {
|
|
return m <= PostMergeHistory
|
|
}
|
|
|
|
func (m HistoryMode) String() string {
|
|
switch m {
|
|
case AllHistory:
|
|
return "all"
|
|
case PostMergeHistory:
|
|
return "postmerge"
|
|
default:
|
|
return fmt.Sprintf("invalid HistoryMode(%d)", m)
|
|
}
|
|
}
|
|
|
|
// MarshalText implements encoding.TextMarshaler.
|
|
func (m HistoryMode) MarshalText() ([]byte, error) {
|
|
if m.IsValid() {
|
|
return []byte(m.String()), nil
|
|
}
|
|
return nil, fmt.Errorf("unknown history mode %d", m)
|
|
}
|
|
|
|
// UnmarshalText implements encoding.TextUnmarshaler.
|
|
func (m *HistoryMode) UnmarshalText(text []byte) error {
|
|
switch string(text) {
|
|
case "all":
|
|
*m = AllHistory
|
|
case "postmerge":
|
|
*m = PostMergeHistory
|
|
default:
|
|
return fmt.Errorf(`unknown sync mode %q, want "all" or "postmerge"`, text)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type HistoryPrunePoint struct {
|
|
BlockNumber uint64
|
|
BlockHash common.Hash
|
|
}
|
|
|
|
// HistoryPrunePoints contains the pre-defined history pruning cutoff blocks for known networks.
|
|
var HistoryPrunePoints = map[common.Hash]*HistoryPrunePoint{
|
|
// mainnet
|
|
params.MainnetGenesisHash: {
|
|
BlockNumber: 15537394,
|
|
BlockHash: common.HexToHash("0x56a9bb0302da44b8c0b3df540781424684c3af04d0b7a38d72842b762076a664"),
|
|
},
|
|
// sepolia
|
|
params.SepoliaGenesisHash: {
|
|
BlockNumber: 1735371,
|
|
BlockHash: common.HexToHash("0x36fb89fba5b7857cf0ca78b5a9625b4043ff4555dfce9b7bcdcdd758a11eb946"),
|
|
},
|
|
}
|