-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Summary
Add a ProblemReport gathering during decoding for the CatalystSignedDocument
Description
- Modify the
minicbor::Decodetrait implementation of theCatalystSignedDocumentstruct. Replaceerrors: Vec<anyhow::Error>with theProblemReport. - Modify the
TryFromtrait implementation of theMetadatastruct. Replaceerrors: Vec<anyhow::Error>with theProblemReport. - Modify the
TryFromtrait implementation of theAdditionalFieldsstruct. Replaceerrors: Vec<anyhow::Error>with theProblemReport. - Modify the
TryFromtrait implementation of theSignaturesstruct. Replaceerrors: Vec<anyhow::Error>with theProblemReport. - Store gathered
ProblemReportinsideCatalystSignedDocumentas field.