Skip to content

Commit

Permalink
Refactor Serials to Kinds to match keripy
Browse files Browse the repository at this point in the history
  • Loading branch information
SmithSamuelM committed Jul 26, 2024
1 parent 37ebd7b commit 48f8433
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keria/app/indirecting.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from keri.app import httping
from keri.core import eventing
from keri.core.coring import Ilks, Sadder
from keri.kering import Protocols
from keri.kering import Protocols, Kinds

CESR_DESTINATION_HEADER = "CESR-DESTINATION"

Expand Down Expand Up @@ -78,7 +78,7 @@ def on_post(self, req, rep):
rep.set_header('connection', "close")

cr = httping.parseCesrHttpRequest(req=req)
serder = Sadder(ked=cr.payload, kind=eventing.Serials.json)
serder = Sadder(ked=cr.payload, kind=Kinds.json)
msg = bytearray(serder.raw)
msg.extend(cr.attachments.encode("utf-8"))

Expand Down

0 comments on commit 48f8433

Please sign in to comment.