erigon-pulse/core/rawdb/accessors_metadata.go
Alex Sharov 605d7a8d59
Sokol v0 (#2228)
* handle chain flag in integration

* handle chain flag in integration

* handle chain flag in integration

* save

* save

* merge devel

* save

* noopWriter - one is enough

* chain spec parser

* chain spec parser

* embed

* embed

* embed

* embed

* embed

* embed

* embed

* clean

* clean

* correct alloc after reset state

* correct alloc after reset state

* correct alloc after reset state

* integration reset state now does re-apply genesis and chainConfig

* eips summary

* eips summary

* eips summary
2021-06-25 19:13:40 +01:00

65 lines
2.1 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/common/dbutils"
"github.com/ledgerwatch/erigon/ethdb"
"github.com/ledgerwatch/erigon/common"
"github.com/ledgerwatch/erigon/params"
)
// ReadChainConfig retrieves the consensus settings based on the given genesis hash.
func ReadChainConfig(db ethdb.KVGetter, hash common.Hash) (*params.ChainConfig, error) {
data, err := db.GetOne(dbutils.ConfigPrefix, hash[:])
if err != nil {
return nil, err
}
if len(data) == 0 {
return nil, nil
}
var config params.ChainConfig
if err := json.Unmarshal(data, &config); err != nil {
return nil, fmt.Errorf("invalid chain config JSON: %x, %w", hash, err)
}
return &config, nil
}
// WriteChainConfig writes the chain config settings to the database.
func WriteChainConfig(db ethdb.Putter, hash common.Hash, cfg *params.ChainConfig) error {
if cfg == nil {
return nil
}
data, err := json.Marshal(cfg)
if err != nil {
return fmt.Errorf("failed to JSON encode chain config: %w", err)
}
if err := db.Put(dbutils.ConfigPrefix, 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 ethdb.Deleter, hash common.Hash) error {
return db.Delete(dbutils.ConfigPrefix, hash[:], nil)
}