mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 12:07:17 +00:00
74847d77e6
* turbo-geth to erigon * tg, turbo to erigon
32 lines
777 B
Go
32 lines
777 B
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ledgerwatch/erigon/common"
|
|
"github.com/ledgerwatch/erigon/core/forkid"
|
|
)
|
|
|
|
// Forks is a data type to record a list of forks passed by this node
|
|
type Forks struct {
|
|
GenesisHash common.Hash `json:"genesis"`
|
|
Forks []uint64 `json:"forks"`
|
|
}
|
|
|
|
// Forks implements erigon_forks. Returns the genesis block hash and a sorted list of all forks block numbers
|
|
func (api *ErigonImpl) Forks(ctx context.Context) (Forks, error) {
|
|
tx, err := api.db.BeginRo(ctx)
|
|
if err != nil {
|
|
return Forks{}, err
|
|
}
|
|
defer tx.Rollback()
|
|
|
|
chainConfig, genesis, err := api.chainConfigWithGenesis(tx)
|
|
if err != nil {
|
|
return Forks{}, err
|
|
}
|
|
forksBlocks := forkid.GatherForks(chainConfig)
|
|
|
|
return Forks{genesis.Hash(), forksBlocks}, nil
|
|
}
|