From e6b350cea4e36d9c583868f3df991efa980bef45 Mon Sep 17 00:00:00 2001 From: Alberto Centelles Date: Wed, 18 Aug 2021 13:19:47 +0100 Subject: [PATCH] Add comment --- src/dkg/pv.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dkg/pv.rs b/src/dkg/pv.rs index 0ec168d7..04181112 100644 --- a/src/dkg/pv.rs +++ b/src/dkg/pv.rs @@ -158,6 +158,8 @@ where } self.vss.insert(dealer, sharing); } + // TODO: Shall we add here a check whether enough dealers (> 66%) have shared their PVSS? If so, we'd move to a Dealt state. + // Once we are in a dealt state, we'd trigger the generation of the transcript and share the decryption keys } Ok(None) }