Skip to content

Commit 980566b

Browse files
committed
fix logging of vote count for bootstrap cluster QCs
1 parent cbf7fb6 commit 980566b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/bootstrap/run/epochs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ func ConstructClusterRootQCsFromVotes(log zerolog.Logger, clusterList flow.Clust
349349
clusterBlock := clusterBlocks[i]
350350
clusterVotes := votes[i]
351351
signers := filterClusterSigners(clusterMembers, nodeInfos)
352-
log.Info().Msgf("producing QC for cluster (index: %d, size: %d) from %d votes", i, len(clusterMembers), len(votes))
352+
log.Info().Msgf("producing QC for cluster (index: %d, size: %d) from %d votes", i, len(clusterMembers), len(clusterVotes))
353353

354354
qc, err := GenerateClusterRootQCFromVotes(signers, clusterMembers, clusterBlock, clusterVotes)
355355
if err != nil {

0 commit comments

Comments
 (0)