Skip to content
Merged
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
4 changes: 2 additions & 2 deletions consensus/dbft/dbft.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ const (
// crossEpochDecryptionStartRound is the number of DKG round (as denoted in KeyManagement
// system contract) starting from which continuous cross-epoch Envelopes decryption is supported.
// First DKG round setups sharing key, second DKG round setups resharing key, hence resharing
// key may be used for decryption starting from the third round.
crossEpochDecryptionStartRound = 3
// key may be used for decryption starting from the second round.
Comment thread
AnnaShaleva marked this conversation as resolved.
crossEpochDecryptionStartRound = 2
)

// Various error messages to mark blocks invalid. These should be private to
Expand Down