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 e3fc70c commit d556a41Copy full SHA for d556a41
aries_cloudcontroller/controllers/proof.py
@@ -81,10 +81,10 @@ async def get_presentation_credentials(
81
82
# Send a problem report for presentation exchange
83
async def send_problem_report(self, pres_ex_id, explanation: str):
84
- explanation_request = {"explain_ltxt": explanation}
+ body = {"explain_ltxt": explanation}
85
return await self.admin_POST(
86
f"{self.base_url}/records/{pres_ex_id}/problem-report",
87
- json_data=explanation_request,
+ json_data=body,
88
)
89
90
# Sends a proof presentation
0 commit comments