Skip to content

Commit

Permalink
fix: typo in new method name
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bluhm <[email protected]>
  • Loading branch information
dbluhm committed Dec 6, 2023
1 parent 6963985 commit 141220c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aries_cloudagent/messaging/decorators/attach_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ def content(self) -> Union[Mapping, Tuple[Sequence[str], str]]:
return None

@classmethod
def data_base65_string(
def data_base64_string(
cls,
content: str,
*,
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudagent/protocols/didexchange/v1_0/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ async def create_response(
attach = None
if conn_rec.invitation_msg_id is None:
# Rotation needed
attach = AttachDecorator.data_base65_string(did)
attach = AttachDecorator.data_base64_string(did)
async with self.profile.session() as session:
wallet = session.inject(BaseWallet)
await attach.data.sign(conn_rec.invitation_key, wallet)
Expand Down

0 comments on commit 141220c

Please sign in to comment.