Skip to content

Commit 169f8f2

Browse files
committed
cargo fmt
1 parent 8782fd7 commit 169f8f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/cosmwasm-smart-contracts/coconut-dkg/src/msg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub struct InstantiateMsg {
3636
pub enum ExecuteMsg {
3737
// we could have just re-used AdvanceEpochState, but imo an explicit message is better
3838
InitiateDkg {},
39-
39+
4040
RegisterDealer {
4141
bte_key_with_proof: EncodedBTEPublicKeyWithProof,
4242
identity_key: IdentityKey,

common/cosmwasm-smart-contracts/coconut-dkg/src/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ impl EpochState {
238238
pub fn first() -> Self {
239239
EpochState::PublicKeySubmission { resharing: false }
240240
}
241-
241+
242242
pub fn next(self) -> Option<Self> {
243243
match self {
244244
EpochState::WaitingInitialisation => None,

0 commit comments

Comments
 (0)