diff --git a/go/node/config.go b/go/node/config.go index 376424d0c9..def6a4bc32 100644 --- a/go/node/config.go +++ b/go/node/config.go @@ -55,7 +55,11 @@ type Config struct { } func NewNodeConfig(opts ...Option) *Config { - defaultConfig := &Config{} + defaultConfig := &Config{ + batchInterval: "1s", + rollupInterval: "3s", + l1ChainID: 1337, + } for _, opt := range opts { opt(defaultConfig)