unpack commitments in MsgDealerBroadcast

This commit is contained in:
Alfredo Garcia 2021-05-06 10:36:48 -03:00 committed by Deirdre Connolly
parent 1045353b53
commit 9462d6c93e
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ Each payload defines a new message:
struct MsgDealerBroadcast {
// The secret key as a frost::Scalar.
secret_key: frost::Scalar,
// Set of commitments as jubjub::ExtendedPoint using frost::Commitment wrapper.
commitments: Vec<frost::Commitment>,
// Commitments for the signer as jubjub::ExtendedPoint.
commitment: jubjub::ExtendedPoint,
// The generated public key for the group.
group_public: frost::VerificationKey<SpendAuth>,
}