From 05b246dbe519f8732197a77bfb6762c6de403ef2 Mon Sep 17 00:00:00 2001 From: tycho garen Date: Fri, 18 Mar 2022 12:23:10 -0400 Subject: [PATCH] remove lint --- internal/mempool/reactor_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/mempool/reactor_test.go b/internal/mempool/reactor_test.go index 833f44525..64a8adca1 100644 --- a/internal/mempool/reactor_test.go +++ b/internal/mempool/reactor_test.go @@ -130,7 +130,6 @@ func (rts *reactorTestSuite) waitForTxns(t *testing.T, txs []types.Tx, ids ...ty // ensure that the transactions get fully broadcast to the // rest of the network wg := &sync.WaitGroup{} - var count int for name, pool := range rts.mempools { if !p2ptest.NodeInSlice(name, ids) { continue @@ -148,7 +147,6 @@ func (rts *reactorTestSuite) waitForTxns(t *testing.T, txs []types.Tx, ids ...ty "node=%q, ntx=%d, size=%d", name, len(txs), pool.Size(), ) }(name, pool) - count++ } wg.Wait() }