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
James Katz pointed out in Discord that PublicKeyPackage does not have a min_signers. This prevents a non-Participant Coordinator from succesfully running the protocol since they will have no idea how many participants need to be involved in a signing session.
Add a min_signers field to the PublicKeyPackage.
This is a breaking change so it will need to be included only in 3.0.0
We must be careful to not break serialization compatibility if possible (we should not break that even in major versions if possible). That might be achievable using an Option. If it's not possible, that will require bumping the serialization version which will be a pain.
The text was updated successfully, but these errors were encountered:
James Katz pointed out in Discord that PublicKeyPackage does not have a min_signers. This prevents a non-Participant Coordinator from succesfully running the protocol since they will have no idea how many participants need to be involved in a signing session.
Add a min_signers field to the PublicKeyPackage.
This is a breaking change so it will need to be included only in 3.0.0
We must be careful to not break serialization compatibility if possible (we should not break that even in major versions if possible). That might be achievable using an
Option
. If it's not possible, that will require bumping the serialization version which will be a pain.The text was updated successfully, but these errors were encountered: