-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Labels
Milestone
Description
Just realized - there is more than one kind of .good :-) TypeScript code for reference:
if (verifyRes && verifyRes.match) {
if (mixedSignatures) {
verifyRes.mixed = true;
}
if (signedBlockCount > 0 && signedBlockCount != contentBlocks.length) {
verifyRes.partial = true;
}
}That means VerifyRes needs to be updated to also include mixed: Bool? and partial: Bool?. Plus this logic here, too. But that's for another issue, needs more thought. It won't be a difficult change once thought through.
Originally posted by @tomholub in #998 (comment)
Reactions are currently unavailable