mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 23:48:06 -05:00
Simplify make call by omitting redundant arguments (#6949)
* removed redundant args * Merge refs/heads/master into omit-redundant-make-args
This commit is contained in:
@@ -110,7 +110,7 @@ func BenchmarkShuffleList(b *testing.B) {
|
||||
listSizes := []uint64{400000, 40000, 400}
|
||||
seed := [32]byte{123, 42}
|
||||
for _, listSize := range listSizes {
|
||||
testIndices := make([]uint64, listSize, listSize)
|
||||
testIndices := make([]uint64, listSize)
|
||||
for i := uint64(0); i < listSize; i++ {
|
||||
testIndices[i] = i
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user