We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18ce1ce commit 0d790efCopy full SHA for 0d790ef
pkg/config/config.go
@@ -266,6 +266,14 @@ func (c *Config) Validate() error {
266
}
267
268
269
+ if len(c.DA.GetForcedInclusionNamespace()) > 0 {
270
+ // if err := validateNamespace(c.DA.GetForcedInclusionNamespace()); err != nil {
271
+ // return fmt.Errorf("could not validate forced inclusion namespace (%s): %w", c.DA.GetForcedInclusionNamespace(), err)
272
+ // }
273
+ return fmt.Errorf("forced inclusion is not yet live")
274
+
275
+ }
276
277
// Validate lazy mode configuration
278
if c.Node.LazyMode && c.Node.LazyBlockInterval.Duration <= c.Node.BlockTime.Duration {
279
return fmt.Errorf("LazyBlockInterval (%v) must be greater than BlockTime (%v) in lazy mode",
0 commit comments