From 7dd62f4cc6dc6b3857f47e0b500250fa7e3e1dcc Mon Sep 17 00:00:00 2001 From: Philipp Gackstatter Date: Wed, 22 May 2024 18:05:37 +0200 Subject: [PATCH] Fix nil nil lint --- pkg/testsuite/snapshotcreator/snapshotcreator.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/testsuite/snapshotcreator/snapshotcreator.go b/pkg/testsuite/snapshotcreator/snapshotcreator.go index a7926cd55..8b608c12b 100644 --- a/pkg/testsuite/snapshotcreator/snapshotcreator.go +++ b/pkg/testsuite/snapshotcreator/snapshotcreator.go @@ -216,6 +216,7 @@ func createGenesisOutput(api iotago.API, genesisTokenAmount iotago.BaseToken, ge return output, nil } + //nolint:nilnil // we want to return nil here return nil, nil }