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
Right now process_response only decodes a successful PSBT which it validates. Error response bodies should also be parsed to be displayed safely to end users. As specified in the well known errors section of BIP 78.
Errors from process_response may be improved by being separated into safe ReceiverError::WellKnown standard error types that can be displayed in the UI and ReceiverError::DebugOnly which "can only appear in debug logs." Separation would simplify an integration's error handling.
The text was updated successfully, but these errors were encountered:
Right now
process_response
only decodes a successful PSBT which it validates. Error response bodies should also be parsed to be displayed safely to end users. As specified in the well known errors section of BIP 78.Errors from
process_response
may be improved by being separated into safeReceiverError::WellKnown
standard error types that can be displayed in the UI andReceiverError::DebugOnly
which "can only appear in debug logs." Separation would simplify an integration's error handling.The text was updated successfully, but these errors were encountered: