Skip to content

Commit

Permalink
Replace exception (that was never being caught) with a log message to…
Browse files Browse the repository at this point in the history
… indicate a missing receipt.

Signed-off-by: pfeairheller <[email protected]>
  • Loading branch information
pfeairheller committed Nov 21, 2023
1 parent fe826ca commit b51c089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keri/app/agenting.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def receipt(self, pre, sn=None):
coring.Counter(qb64b=rct, strip=True)
rcts[wit] = rct
else:
raise kering.ValidationError(f"invalid response {rep.status} from witnesses {wit}")
logger.error(f"invalid response {rep.status} from witnesses {wit}")

for wit in rcts.keys():
ewits = [w for w in rcts.keys() if w != wit]
Expand Down

0 comments on commit b51c089

Please sign in to comment.