We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1817d88 commit e54bed6Copy full SHA for e54bed6
common/cosmwasm-smart-contracts/coconut-dkg/src/msg.rs
@@ -36,7 +36,7 @@ pub struct InstantiateMsg {
36
pub enum ExecuteMsg {
37
// we could have just re-used AdvanceEpochState, but imo an explicit message is better
38
InitiateDkg {},
39
-
+
40
RegisterDealer {
41
bte_key_with_proof: EncodedBTEPublicKeyWithProof,
42
identity_key: IdentityKey,
common/cosmwasm-smart-contracts/coconut-dkg/src/types.rs
@@ -238,7 +238,7 @@ impl EpochState {
238
pub fn first() -> Self {
239
EpochState::PublicKeySubmission { resharing: false }
240
}
241
242
pub fn next(self) -> Option<Self> {
243
match self {
244
EpochState::WaitingInitialisation => None,
0 commit comments