Skip to content

Commit

Permalink
Merge pull request #2655 from ianco/credx_err_msg_fix
Browse files Browse the repository at this point in the history
Slight improvement to credx proof validation error message
  • Loading branch information
ianco authored Dec 7, 2023
2 parents 2857a2a + 9860157 commit 5288875
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aries_cloudagent/indy/credx/verifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ async def verify_presentation(
msgs.append(f"{PresVerifyMsg.PRES_VALUE_ERROR.value}::{s}")
LOGGER.error(
f"Presentation on nonce={pres_req['nonce']} "
f"cannot be validated: {str(err)}"
f"cannot be validated (presentation will be marked as Invalid)"
f": {str(err)}"
)
return (False, msgs)

Expand Down

0 comments on commit 5288875

Please sign in to comment.