cargo fmt

This commit is contained in:
Jędrzej Stuczyński
2024-01-05 11:02:10 +00:00
parent 9b7815d45b
commit 0aa8084625
2 changed files with 2 additions and 2 deletions
@@ -36,7 +36,7 @@ pub struct InstantiateMsg {
pub enum ExecuteMsg {
// we could have just re-used AdvanceEpochState, but imo an explicit message is better
InitiateDkg {},
RegisterDealer {
bte_key_with_proof: EncodedBTEPublicKeyWithProof,
identity_key: IdentityKey,
@@ -238,7 +238,7 @@ impl EpochState {
pub fn first() -> Self {
EpochState::PublicKeySubmission { resharing: false }
}
pub fn next(self) -> Option<Self> {
match self {
EpochState::WaitingInitialisation => None,