mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 04:57:17 +00:00
12 lines
292 B
Go
12 lines
292 B
Go
|
package commands
|
||
|
|
||
|
import (
|
||
|
"github.com/ledgerwatch/turbo-geth/core/rawdb"
|
||
|
"github.com/ledgerwatch/turbo-geth/params"
|
||
|
)
|
||
|
|
||
|
func getChainConfig(db rawdb.DatabaseReader) *params.ChainConfig {
|
||
|
genesisHash := rawdb.ReadBlockByNumber(db, 0).Hash()
|
||
|
return rawdb.ReadChainConfig(db, genesisHash)
|
||
|
}
|