We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 020b982 commit 9230a2cCopy full SHA for 9230a2c
1 file changed
replica/replica.go
@@ -134,13 +134,13 @@ func (replica *Replica) Run(ctx context.Context) {
134
replica.mq.DropMessagesBelowHeight(m)
135
case []id.Signatory:
136
procAllowed := map[id.Signatory]bool{}
137
- for _, sig := range m{
+ for _, sig := range m {
138
procAllowed[sig] = true
139
}
140
replica.procsAllowed = procAllowed
141
142
scheduler := scheduler.NewRoundRobin(m)
143
- f := len(procAllowed) /3
+ f := len(procAllowed) / 3
144
replica.proc.ResetF(uint64(f), scheduler)
145
146
0 commit comments