From 30ee62086a63ef9058317deb930979cfad80399f Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 20 Nov 2024 19:36:04 -0800 Subject: [PATCH] Remove redundant ckd performance test. --- test/derive-accounts.test.mjs | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/test/derive-accounts.test.mjs b/test/derive-accounts.test.mjs index 6d44cca..1d9203a 100644 --- a/test/derive-accounts.test.mjs +++ b/test/derive-accounts.test.mjs @@ -85,23 +85,3 @@ describe('Ledger device accounts', { skip: true }, async () => { assert.ok(accounts[0].address) }) }) - -describe('child key derivation performance', { skip: true }, async () => { - it('performance test of BIP-44 ckd', async () => { - const wallet = await Bip44Wallet.create(NANO_TEST_VECTORS.PASSWORD) - await wallet.unlock(NANO_TEST_VECTORS.PASSWORD) - - const accounts = await wallet.accounts(0, 0x7fff) - - assert.equal(accounts.length, 0x8000) - }) - - it('performance test of BLAKE2b ckd', async () => { - const wallet = await Blake2bWallet.create(NANO_TEST_VECTORS.PASSWORD) - await wallet.unlock(NANO_TEST_VECTORS.PASSWORD) - - const accounts = await wallet.accounts(0, 0x7fff) - - assert.equal(accounts.length, 0x8000) - }) -}) -- 2.34.1