You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When cheater detection disabled, the Coordinator doesn't need to pass PublicKeyPackage::verifying_shares since it's not used anymore. But they still need to choose identifiers to use in the signature_shares BTreeMap argument.
Ideally, when cheater-detection is disabled, this argument could become a BTreeSet, though I feel it's awkward to have a function have different arguments depending on a feature.
Alternativelly we could add another function, e.g. aggregate_without_cheater_detection (and then we could deprecate the cheater-detection feature)
The text was updated successfully, but these errors were encountered:
When cheater detection disabled, the Coordinator doesn't need to pass
PublicKeyPackage::verifying_shares
since it's not used anymore. But they still need to choose identifiers to use in thesignature_shares
BTreeMap argument.Ideally, when cheater-detection is disabled, this argument could become a BTreeSet, though I feel it's awkward to have a function have different arguments depending on a feature.
Alternativelly we could add another function, e.g.
aggregate_without_cheater_detection
(and then we could deprecate thecheater-detection
feature)The text was updated successfully, but these errors were encountered: