Adds support for validating an array of out-of-order messages by multiple authors. This has been made possible by the addition of multi-author support to ssb-validate (https://github.com/mycognosist/ssb-validate/pull/13).
Major changes
Add batch verification and validation for an array of out-of-order messages by multiple authors
validateMultiAuthorBatch(msgs)
Add test and perf for multiAuthor (created as separate tests because of single versus multi-author scenario)
Update README for multiAuthor
Remove the msg.value length check (this check is performed in ssb-validate-rs)
Minor changes
Update doc comments for all methods
Run linter
Refactor previous_msg assignment to avoid manual implementation of Option (use map instead)
Adds support for validating an array of out-of-order messages by multiple authors. This has been made possible by the addition of multi-author support to
ssb-validate
(https://github.com/mycognosist/ssb-validate/pull/13).Major changes
validateMultiAuthorBatch(msgs)
msg.value
length check (this check is performed inssb-validate-rs
)Minor changes
previous_msg
assignment to avoid manual implementation ofOption
(usemap
instead)