Skip to content
Snippets Groups Projects
Commit 446d4a88 authored by Vincent Texier's avatar Vincent Texier
Browse files

[fix] fix publish revocation document

parent dafbf527
No related branches found
No related tags found
1 merge request!7750.50.0
......@@ -109,10 +109,10 @@ class DocumentsService:
async def broadcast_revocation(
self, currency, identity_document, revocation_document
):
signed_raw = revocation_document.signed_raw(identity_document)
signed_raw = revocation_document.signed_raw()
self._logger.debug("Broadcasting : \n" + signed_raw)
responses = await self._bma_connector.broadcast(
currency, bma.wot.revoke, req_args={"revocation": signed_raw}
currency, bma.wot.revoke, req_args={"revocation_signed_raw": signed_raw}
)
result = False, ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment