Skip to content

Commit

Permalink
fix did rotate content
Browse files Browse the repository at this point in the history
Signed-off-by: George Mulhearn <[email protected]>
  • Loading branch information
gmulhearn-anonyome committed Jun 24, 2024
1 parent 7ad8670 commit ed46a35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ pub(crate) fn ddo_to_attach(ddo: DidDocument) -> Result<Attachment, AriesVcxErro
}

pub(crate) fn assemble_did_rotate_attachment(did: &Did) -> Attachment {
let content_b64 = base64::engine::Engine::encode(&URL_SAFE_LENIENT, did.id());
let content_b64 = base64::engine::Engine::encode(&URL_SAFE_LENIENT, did.did());
Attachment::builder()
.data(
AttachmentData::builder()
Expand Down

0 comments on commit ed46a35

Please sign in to comment.