We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc39ea7 commit 4a1ccc2Copy full SHA for 4a1ccc2
aries_cloudcontroller/controllers/proof.py
@@ -80,9 +80,11 @@ async def get_presentation_credentials(
80
)
81
82
# Send a problem report for presentation exchange
83
- async def send_problem_report(self, pres_ex_id, request):
+ async def send_problem_report(self, pres_ex_id, explanation: str):
84
+ explanation_request = {"explain_ltxt": explanation}
85
return await self.admin_POST(
- f"{self.base_url}/records/{pres_ex_id}/problem-report", json_data=request
86
+ f"{self.base_url}/records/{pres_ex_id}/problem-report",
87
+ json_data=explanation_request,
88
89
90
# Sends a proof presentation
0 commit comments