From 5f4647e9949e6ef0a3f5b1f1d037cf88ebd0eb62 Mon Sep 17 00:00:00 2001 From: Rootul Patel Date: Mon, 12 Feb 2024 09:52:32 -0500 Subject: [PATCH] fix: lint again --- nmt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmt.go b/nmt.go index 54dc3db7..869f0818 100644 --- a/nmt.go +++ b/nmt.go @@ -20,7 +20,7 @@ const ( var ( ErrInvalidRange = errors.New("invalid proof range") ErrInvalidPushOrder = errors.New("pushed data has to be lexicographically ordered by namespace IDs") - noOp = func(_ []byte, children ...[]byte) {} + noOp = func(_ []byte, _ ...[]byte) {} ) type NodeVisitorFn = func(hash []byte, children ...[]byte)