From 12c53ab6e4ba0f413c7a4022962de4c2bbf133f5 Mon Sep 17 00:00:00 2001 From: Petteri Stenius Date: Tue, 23 Jan 2024 14:55:44 +0200 Subject: [PATCH] run npm pretty --- examples/integration-scripts/singlesig-dip.test.ts | 2 +- src/keri/app/coring.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/integration-scripts/singlesig-dip.test.ts b/examples/integration-scripts/singlesig-dip.test.ts index 0858ee66..857f1e99 100644 --- a/examples/integration-scripts/singlesig-dip.test.ts +++ b/examples/integration-scripts/singlesig-dip.test.ts @@ -90,6 +90,6 @@ describe('singlesig-dip', () => { // make sure query with seal is idempotent op = await client2.keyStates().query(name1_id, undefined, seal); - await waitOperation(client2, op) + await waitOperation(client2, op); }); }); diff --git a/src/keri/app/coring.ts b/src/keri/app/coring.ts index 09349d15..3cfce93e 100644 --- a/src/keri/app/coring.ts +++ b/src/keri/app/coring.ts @@ -166,11 +166,11 @@ export class KeyStates { } /** - * Query the key state of an identifier for a given sequence number or anchor + * Query the key state of an identifier for a given sequence number or anchor * @async * @param {string} pre Identifier prefix * @param {number} [sn] Optional sequence number - * @param {any} [anchor] Optional anchor + * @param {any} [anchor] Optional anchor * @returns {Promise} A promise to the long-running operation */ async query(pre: string, sn?: string, anchor?: any): Promise {