From 5c372dbe46e20a9a7d9834eda4465013d67422c1 Mon Sep 17 00:00:00 2001 From: Matt Curtis Date: Fri, 15 Sep 2023 10:46:53 +0100 Subject: [PATCH] fix startup test --- integration/noderunner/noderunner_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/integration/noderunner/noderunner_test.go b/integration/noderunner/noderunner_test.go index 67a034f5fe..635ead7623 100644 --- a/integration/noderunner/noderunner_test.go +++ b/integration/noderunner/noderunner_test.go @@ -131,6 +131,7 @@ func createInMemoryNode(t *testing.T) (node.Node, gethcommon.Address) { node.WithL1WebsocketURL(fmt.Sprintf("ws://%s:%d", _localhost, _startPort+integration.DefaultGethWSPortOffset)), node.WithGenesis(true), node.WithProfiler(true), + node.WithL1BlockTime(1*time.Second), ) return NewInMemNode(nodeCfg), hostAddress