erigon-pulse/cmd/rpcdaemon/commands/tg_system.go

32 lines
769 B
Go
Raw Normal View History

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"`
2020-10-25 21:34:00 +00:00
Forks []uint64 `json:"forks"`
}
2020-10-25 21:34:00 +00:00
// Forks implements tg_forks. Returns the genesis block hash and a sorted list of all forks block numbers
func (api *TgImpl) Forks(ctx context.Context) (Forks, error) {
2021-04-03 06:26:00 +00:00
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
}