Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to renamed class, Boatswain #161

Merged
merged 1 commit into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/keria/app/agenting.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def __init__(self, hby, rgy, agentHab, agency, caid, **opts):
self.agency = agency
self.caid = caid

self.swain = delegating.Boatswain(hby=hby, proxy=agentHab)
self.swain = delegating.Sealer(hby=hby, proxy=agentHab)
self.counselor = Counselor(hby=hby, swain=self.swain, proxy=agentHab)
self.org = connecting.Organizer(hby=hby)

Expand Down
4 changes: 2 additions & 2 deletions src/keria/core/longrunning.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class Monitor:
Attributes:
hby (Habery): identifier database environment
opr(Operator): long running operations database
swain(Boatswain): Delegation processes tracker
swain(Sealer): Delegation processes tracker

"""

Expand All @@ -94,7 +94,7 @@ def __init__(self, hby, swain, counselor=None, registrar=None, credentialer=None

Parameters:
hby (Habery): identifier database environment
swain(Boatswain): Delegation processes tracker
swain(Sealer): Delegation processes tracker
opr (Operator): long running operations database

"""
Expand Down
Loading