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

fixes some usages of coring.Serder to use serdering.SerderKERI #788

Merged
merged 2 commits into from
May 31, 2024
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
4 changes: 2 additions & 2 deletions src/keri/app/cli/commands/multisig/notice.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

from keri.app import habbing, forwarding, grouping
from keri.app.cli.common import existing
from keri.core import coring
from keri.core.coring import Ilks
from keri.core import serdering

logger = help.ogler.getLogger()

Expand Down Expand Up @@ -86,7 +86,7 @@ def noticeDo(self, tymth, tock=0.0):
(smids, rmids) = hab.members()
serder = hab.kever.serder
rot = hab.makeOwnEvent(sn=hab.kever.sn)
eserder = coring.Serder(raw=rot)
eserder = serdering.SerderKERI(raw=rot)
del rot[:eserder.size]

ilk = serder.ked['t']
Expand Down
2 changes: 1 addition & 1 deletion src/keri/db/basing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ def cloneEvtMsg(self, pre, fn, dig):
count=1).qb64b)
atc.extend(couple)
elif self.kevers[pre].delegated:
if coring.SerderKERI(raw=raw).estive:
if serdering.SerderKERI(raw=raw).estive:
raise kering.MissingEntryError("Missing delegator anchor seal for dig={}.".format(dig))

# add trans receipts quadruples to attachments
Expand Down
Loading