p2p: cleanup unused arguments (#7079)

This is mostly just reading through the output of uparam, after
noticing that there were a few places where we were ignoring some arguments.
This commit is contained in:
Sam Kleinman
2021-10-08 12:49:17 +00:00
committed by GitHub
parent 4ca130d226
commit 1b5bb5348f
7 changed files with 22 additions and 25 deletions
+4 -4
View File
@@ -58,7 +58,7 @@ loop:
// assert that the queue serializes the blocks
require.Equal(t, resp.block.Height, trackingHeight)
trackingHeight--
queue.success(resp.block.Height)
queue.success()
}
}
@@ -105,7 +105,7 @@ func TestBlockQueueWithFailures(t *testing.T) {
queue.retry(resp.block.Height)
} else {
trackingHeight--
queue.success(resp.block.Height)
queue.success()
}
case <-queue.done():
@@ -223,7 +223,7 @@ func TestBlockQueueStopTime(t *testing.T) {
// assert that the queue serializes the blocks
assert.Equal(t, resp.block.Height, trackingHeight)
trackingHeight--
queue.success(resp.block.Height)
queue.success()
case <-queue.done():
wg.Wait()
@@ -268,7 +268,7 @@ loop:
case resp := <-queue.verifyNext():
require.GreaterOrEqual(t, resp.block.Height, initialHeight)
queue.success(resp.block.Height)
queue.success()
}
}
}