We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e115492 commit 4e8061bCopy full SHA for 4e8061b
pkg/tbtc/dkg.go
@@ -4,6 +4,7 @@ import (
4
"context"
5
"errors"
6
"fmt"
7
+ "golang.org/x/exp/maps"
8
"math/big"
9
"sort"
10
@@ -181,10 +182,15 @@ func (de *dkgExecutor) checkEligibility(
181
182
}
183
184
dkgLogger.Infof(
- "selected group members for DKG = %s",
185
+ "selected group members (seats) for DKG: [%s]",
186
groupSelectionResult.OperatorsAddresses,
187
)
188
189
+ dkgLogger.Infof(
190
+ "distinct operators participating in DKG: [%s]",
191
+ maps.Keys(groupSelectionResult.OperatorsAddresses.Set()),
192
+ )
193
+
194
if len(groupSelectionResult.OperatorsAddresses) > de.groupParameters.GroupSize {
195
return nil, nil, fmt.Errorf(
196
"group size larger than supported: [%v]",
0 commit comments