erigon-pulse/core/rawdb/accessors_metadata.go
2024-01-09 19:20:42 +01:00

84 lines
2.5 KiB
Go

// Copyright 2018 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 rawdb
import (
"encoding/json"
"fmt"
"github.com/ledgerwatch/erigon/polygon/bor/borcfg"
"github.com/ledgerwatch/erigon-lib/chain"
libcommon "github.com/ledgerwatch/erigon-lib/common"
"github.com/ledgerwatch/erigon-lib/kv"
)
// ReadChainConfig retrieves the consensus settings based on the given genesis hash.
func ReadChainConfig(db kv.Getter, hash libcommon.Hash) (*chain.Config, error) {
data, err := db.GetOne(kv.ConfigTable, hash[:])
if err != nil {
return nil, err
}
if len(data) == 0 {
return nil, nil
}
var config chain.Config
if err := json.Unmarshal(data, &config); err != nil {
return nil, fmt.Errorf("invalid chain config JSON: %x, %w", hash, err)
}
if config.BorJSON != nil {
borConfig := &borcfg.BorConfig{}
if err := json.Unmarshal(config.BorJSON, borConfig); err != nil {
return nil, fmt.Errorf("invalid chain config 'bor' JSON: %x, %w", hash, err)
}
config.Bor = borConfig
}
return &config, nil
}
// WriteChainConfig writes the chain config settings to the database.
func WriteChainConfig(db kv.Putter, hash libcommon.Hash, cfg *chain.Config) error {
if cfg == nil {
return nil
}
if cfg.Bor != nil {
borJSON, err := json.Marshal(cfg.Bor)
if err != nil {
return fmt.Errorf("failed to JSON encode chain config 'bor': %w", err)
}
cfg.BorJSON = borJSON
}
data, err := json.Marshal(cfg)
if err != nil {
return fmt.Errorf("failed to JSON encode chain config: %w", err)
}
if err := db.Put(kv.ConfigTable, hash[:], data); err != nil {
return fmt.Errorf("failed to store chain config: %w", err)
}
return nil
}
// DeleteChainConfig retrieves the consensus settings based on the given genesis hash.
func DeleteChainConfig(db kv.Deleter, hash libcommon.Hash) error {
return db.Delete(kv.ConfigTable, hash[:])
}