Threshold DKG doesn't validate that `t <= n`. [`run_threshold_keygen`](https://github.com/dfns-labs/cggmp21/blob/891c30977cc2b107e58844e92da3f5b2adc90c79/cggmp21/src/keygen/threshold.rs#L73C14-L81) should return an error in this case. Also we should have a test that ensures that setting `t > n` results into expected error.
Threshold DKG doesn't validate that
t <= n.run_threshold_keygenshould return an error in this case.Also we should have a test that ensures that setting
t > nresults into expected error.