Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
290 changes: 0 additions & 290 deletions pkg/frost/retry/retry_test.go

This file was deleted.

2 changes: 1 addition & 1 deletion pkg/frost/roast/signing_retry_adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ type SigningRetryAdapter[T any] struct {
}

// EvaluateRetryParticipantsForSigning matches the shape of the
// legacy helper in pkg/frost/retry so call sites can adopt the
// legacy helper in pkg/protocol/retry so call sites can adopt the
// adapter without changing their function-call surface. The legacy
// signature's parameters (groupMembers, seed, retryCount,
// retryParticipantsCount) are ignored: the AttemptContext bound to
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pkg/tbtc/dkg_loop.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/ipfs/go-log/v2"
"github.com/keep-network/keep-core/pkg/chain"
"github.com/keep-network/keep-core/pkg/protocol/group"
"github.com/keep-network/keep-core/pkg/protocol/retry"
"github.com/keep-network/keep-core/pkg/tecdsa/dkg"
"github.com/keep-network/keep-core/pkg/tecdsa/retry"
"golang.org/x/exp/slices"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/tbtc/signing_loop_legacy_selector.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import (
"sort"

"github.com/keep-network/keep-core/pkg/chain"
"github.com/keep-network/keep-core/pkg/frost/retry"
"github.com/keep-network/keep-core/pkg/protocol/group"
"github.com/keep-network/keep-core/pkg/protocol/retry"
)

// legacySigningParticipantSelector is the pre-RFC-21 implementation:
// it calls the pseudo-random retry shuffle in pkg/frost/retry and maps
// it calls the pseudo-random retry shuffle in pkg/protocol/retry and maps
// the resulting qualified operators back to the included member
// indices.
//
Expand Down
2 changes: 1 addition & 1 deletion pkg/tbtc/signing_loop_roast_dispatcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

// signingParticipantSelector picks the set of members included in a
// signing attempt. The legacy implementation is the pseudo-random
// retry shuffle in pkg/frost/retry; the RFC-21 Phase-6 migration
// retry shuffle in pkg/protocol/retry; the RFC-21 Phase-6 migration
// introduces this interface so an alternate ROAST-driven
// implementation can be installed behind the frost_roast_retry build
// tag without touching the call site.
Expand Down
Loading
Loading