From: Chris Duncan Date: Thu, 3 Jul 2025 23:31:09 +0000 (-0700) Subject: Remove logging from account lock and unlock now that tests are correct. X-Git-Tag: v0.10.5~130 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=aad2d82ad0c3a006e5f4ddddeb163b50ab22b2cf;p=libnemo.git Remove logging from account lock and unlock now that tests are correct. --- 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