console.log('wallet performance test')
-test('creating BIP-44 wallets', async () => {
+test('creating BIP-44 wallets', { skip: true }, async () => {
const wallets = []
for (let i = 0x80; i > 0; i--) {
wallets.push(await Bip44Wallet.create(NANO_TEST_VECTORS.PASSWORD))
assert.equal(wallets.length, 0x80)
})
-test('creating BLAKE2b wallets', async () => {
+test('creating BLAKE2b wallets', { skip: true }, async () => {
const wallets = []
for (let i = 0x80; i > 0; i--) {
wallets.push(await Blake2bWallet.create(NANO_TEST_VECTORS.PASSWORD))