mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
7920528ede
* enable checkpoint sync in beacon node * lint fix * rm unused error * addressing PR feedback from Radek * consistent slice -> fixed conversion Co-authored-by: kasey <kasey@users.noreply.github.com>
25 lines
758 B
Go
25 lines
758 B
Go
package blockchaincmd
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/blockchain"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
"github.com/prysmaticlabs/prysm/cmd"
|
|
"github.com/prysmaticlabs/prysm/cmd/beacon-chain/flags"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// FlagOptions for blockchain service flag configurations.
|
|
func FlagOptions(c *cli.Context) ([]blockchain.Option, error) {
|
|
wsp := c.String(flags.WeakSubjectivityCheckpoint.Name)
|
|
wsCheckpt, err := helpers.ParseWeakSubjectivityInputString(wsp)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
maxRoutines := c.Int(cmd.MaxGoroutines.Name)
|
|
opts := []blockchain.Option{
|
|
blockchain.WithMaxGoroutines(maxRoutines),
|
|
blockchain.WithWeakSubjectivityCheckpoint(wsCheckpt),
|
|
}
|
|
return opts, nil
|
|
}
|