mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
25 lines
770 B
Go
25 lines
770 B
Go
package blockchaincmd
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/blockchain"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/core/helpers"
|
|
"github.com/prysmaticlabs/prysm/v4/cmd"
|
|
"github.com/prysmaticlabs/prysm/v4/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
|
|
}
|