Remove bad panic in coordinator

It expected ConfirmationShare to be n-of-n, not t-of-n.
This commit is contained in:
Luke Parker
2024-08-06 00:27:19 -04:00
parent 3042697243
commit d943e037e5

View File

@@ -359,10 +359,7 @@ impl<
) )
.await; .await;
} }
Accumulation::Ready(DataSet::NotParticipating) => { Accumulation::Ready(DataSet::NotParticipating) | Accumulation::NotReady => {}
panic!("wasn't a participant in DKG confirmination shares")
}
Accumulation::NotReady => {}
} }
} }