From 052bebedc6ab8cb7128c4885ee12b5acbc4af1dd Mon Sep 17 00:00:00 2001 From: Philip Feairheller Date: Fri, 22 Dec 2023 06:48:22 -0800 Subject: [PATCH] Update to renamed method and argument in KERIpy (#157) Signed-off-by: pfeairheller --- src/keria/core/longrunning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keria/core/longrunning.py b/src/keria/core/longrunning.py index b23eae0a..3403cf5b 100644 --- a/src/keria/core/longrunning.py +++ b/src/keria/core/longrunning.py @@ -294,7 +294,7 @@ def status(self, op): f"invalid long running {op.type} operation, metadata missing 'anchor' field") anchor = op.metadata["anchor"] - if self.hby.db.findAnchoringEvent(op.oid, anchor=anchor) is not None: + if self.hby.db.findAnchoringSealEvent(op.oid, seal=anchor) is not None: operation.done = True operation.response = dict(anchor=anchor) else: