Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions p2p/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,13 @@ var (
Value: epoch.SlotsPerEpoch,
Category: categoryValidator,
})

optionShutterSequencerEndpoint = altsrc.NewStringFlag(&cli.StringFlag{
Name: "shutter-sequencer-endpoint",
Usage: "Endpoint of the shutter sequencer",
EnvVars: []string{"MEV_COMMIT_SHUTTER_SEQUENCER_ENDPOINT"},
Category: categoryProvider,
})
)

func main() {
Expand Down Expand Up @@ -524,6 +531,7 @@ func main() {
optionProposerNotifyOffset,
optionSlotDuration,
optionSlotsPerEpoch,
optionShutterSequencerEndpoint,
}

app := &cli.App{
Expand Down Expand Up @@ -709,6 +717,7 @@ func launchNodeWithConfig(c *cli.Context) (err error) {
ProposerNotifyOffset: c.Duration(optionProposerNotifyOffset.Name),
SlotDuration: c.Duration(optionSlotDuration.Name),
SlotsPerEpoch: c.Uint64(optionSlotsPerEpoch.Name),
ShutterSequencerEndpoint: c.String(optionShutterSequencerEndpoint.Name),
})
if err != nil {
return fmt.Errorf("failed starting node: %w", err)
Expand Down
1,247 changes: 632 additions & 615 deletions p2p/gen/go/bidderapi/v1/bidderapi.pb.go

Large diffs are not rendered by default.

Loading
Loading