Skip to content

Commit 017e929

Browse files
Add missing nil check
1 parent ae9d641 commit 017e929

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

system_tests/bold_challenge_protocol_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,9 @@ func createL2NodeForBoldProtocol(
650650
l2info info, currentNode *arbnode.Node, l2client *ethclient.Client, l2stack *node.Node,
651651
assertionChain *solimpl.AssertionChain,
652652
) {
653+
if nodeConfig == nil {
654+
nodeConfig = arbnode.ConfigDefaultL1Test()
655+
}
653656
fatalErrChan := make(chan error, 10)
654657

655658
execConfig := ExecConfigDefaultNonSequencerTest(t, rawdb.HashScheme)

0 commit comments

Comments
 (0)