mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-09 12:31:21 +00:00
e380ee4bdd
Now you can configure: Read timeout (default: 5s) Write timeout (default: 5s) On/off (default: ON) Port (default:5555) Address (default:localhost) Protocol (default: tcp) #7684
30 lines
538 B
Go
30 lines
538 B
Go
package flags
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
var CLDefaultFlags = []cli.Flag{
|
|
&SentinelDiscoveryPort,
|
|
&SentinelDiscoveryAddr,
|
|
&SentinelServerPort,
|
|
&SentinelServerAddr,
|
|
&NoBeaconApi,
|
|
&BeaconApiReadTimeout,
|
|
&BeaconApiWriteTimeout,
|
|
&BeaconApiPort,
|
|
&BeaconApiAddr,
|
|
&Chain,
|
|
&SentinelTcpPort,
|
|
&NoDiscovery,
|
|
&ChaindataFlag,
|
|
&BeaconDBModeFlag,
|
|
&BootnodesFlag,
|
|
&BeaconConfigFlag,
|
|
&GenesisSSZFlag,
|
|
&CheckpointSyncUrlFlag,
|
|
&SentinelStaticPeersFlag,
|
|
&TransitionChainFlag,
|
|
&InitSyncFlag,
|
|
&RecordModeDir,
|
|
&RecordModeFlag,
|
|
}
|