From aad2d82ad0c3a006e5f4ddddeb163b50ab22b2cf Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Thu, 3 Jul 2025 16:31:09 -0700 Subject: [PATCH] Remove logging from account lock and unlock now that tests are correct. --- src/lib/account.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/account.ts b/src/lib/account.ts index f68d6ee..2e6432e 100644 --- a/src/lib/account.ts +++ b/src/lib/account.ts @@ -148,7 +148,6 @@ export class Account { if (this.#prv != null) { data.privateKey = this.#prv } - console.log(this.#prv) const response = (await Account.#poolSafe.assign({ method: 'put', name: this.#pub, @@ -182,7 +181,6 @@ export class Account { name: this.#pub, password }))[0] - console.log(response) const { id, privateKey } = response.result if (id !== this.#pub) { throw null -- 2.47.3