Skip to content

Commit

Permalink
allow sequencer to not use block metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
tsahee committed Jan 29, 2025
1 parent 308b6e9 commit f2e71ab
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions arbnode/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,6 @@ func (c *Config) Validate() error {
if err := c.Staker.Validate(); err != nil {
return err
}
if c.Sequencer && c.TransactionStreamer.TrackBlockMetadataFrom == 0 {
return errors.New("when sequencer is enabled track-block-metadata-from should be set as well")
}
if c.TransactionStreamer.TrackBlockMetadataFrom != 0 && !c.BlockMetadataFetcher.Enable {
log.Warn("track-block-metadata-from is set but blockMetadata fetcher is not enabled")
}
Expand Down

0 comments on commit f2e71ab

Please sign in to comment.