]> zoso.dev Git - libnemo.git/commitdiff
Remove redundant ckd performance test.
authorChris Duncan <chris@zoso.dev>
Thu, 21 Nov 2024 03:36:04 +0000 (19:36 -0800)
committerChris Duncan <chris@zoso.dev>
Thu, 21 Nov 2024 03:36:04 +0000 (19:36 -0800)
test/derive-accounts.test.mjs

index 6d44cca50ee0c0c5ef0a0ad371f2ce0b0e9f0214..1d9203acab3954d9adb6ef693fbacdbf087219aa 100644 (file)
@@ -85,23 +85,3 @@ describe('Ledger device accounts', { skip: true }, async () => {
                assert.ok(accounts[0].address)\r
        })\r
 })\r
-\r
-describe('child key derivation performance', { skip: true }, async () => {\r
-       it('performance test of BIP-44 ckd', async () => {\r
-               const wallet = await Bip44Wallet.create(NANO_TEST_VECTORS.PASSWORD)\r
-               await wallet.unlock(NANO_TEST_VECTORS.PASSWORD)\r
-\r
-               const accounts = await wallet.accounts(0, 0x7fff)\r
-\r
-               assert.equal(accounts.length, 0x8000)\r
-       })\r
-\r
-       it('performance test of BLAKE2b ckd', async () => {\r
-               const wallet = await Blake2bWallet.create(NANO_TEST_VECTORS.PASSWORD)\r
-               await wallet.unlock(NANO_TEST_VECTORS.PASSWORD)\r
-\r
-               const accounts = await wallet.accounts(0, 0x7fff)\r
-\r
-               assert.equal(accounts.length, 0x8000)\r
-       })\r
-})\r