forked from dfinity/ic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'eichhorl/idkg-dealing-contexts' into 'master'
feat(schnorr): CON-1327 Respond to new `IDkgDealingsContext`s With this MR consensus starts responding to the new `IDkgDealingsContext`s, which are a generalization of `EcdsaDealingsContext`s for tSchnorr. To do this, existing `EcdsaDealingsContext`s are mapped to `IDkgDealingsContext`s such that we can treat both requests the same. Additionally, we rename the `EcdsaReshareRequest` struct in block payloads to `IDkgReshareRequest`, as they are now also used for tSchnorr. The `IDkgReshareRequest` struct still contains an optional `EcdsaKeyId` field for compatibility reasons. Until we can set the field to `None` on mainnet, it continues to be initialized with an unused "dummy" `EcdsaKeyId` in the tSchnorr case. See merge request dfinity-lab/public/ic!19417
- Loading branch information
Showing
10 changed files
with
205 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ lint: | |
- DEFAULT | ||
breaking: | ||
ignore: | ||
- types/v1/idkg.proto | ||
use: | ||
- WIRE | ||
except: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.