From 45b899c4225ca64244d874ae2f37008faebc7543 Mon Sep 17 00:00:00 2001 From: Pavel Zbitskiy Date: Thu, 6 Jun 2024 13:22:53 -0400 Subject: [PATCH] fix linter --- data/txHandler_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/txHandler_test.go b/data/txHandler_test.go index 328795603b..896fbb161d 100644 --- a/data/txHandler_test.go +++ b/data/txHandler_test.go @@ -2730,7 +2730,7 @@ func TestTxHandlerCapGuard(t *testing.T) { signedTx := tx.Sign(secrets[0]) blob := protocol.Encode(&signedTx) - blob[0] += 1 // make it invalid + blob[0]++ // make it invalid var completed atomic.Bool go func() {