renamem orders

This commit is contained in:
2025-10-13 14:31:29 -03:00
parent 8c750e00d0
commit 466ff824dd
60 changed files with 165 additions and 59 deletions

View File

@@ -23,7 +23,7 @@ class DeduplicationWindow(BaseModel):
)
def deduplication_window(id: str, payload: DeduplicationWindow):
with enrollment_layer.transact_writer() as transact:
transact.delete(key=KeyPair(id, 'lock'))
transact.delete(key=KeyPair('lock', payload.lock_hash))
transact.delete(key=KeyPair(id, 'LOCK'))
transact.delete(key=KeyPair('LOCK', payload.lock_hash))
return payload