\r
it('should successfully import a BLAKE2b wallet with Trezor test vectors', async () => {\r
const wallet = await Blake2bWallet.fromMnemonic(TREZOR_TEST_VECTORS.PASSWORD, TREZOR_TEST_VECTORS.MNEMONIC_1)\r
- await wallet.unlock(NANO_TEST_VECTORS.PASSWORD)\r
+ await wallet.unlock(TREZOR_TEST_VECTORS.PASSWORD)\r
const accounts = await wallet.accounts()\r
\r
assert.ok('mnemonic' in wallet)\r
assert.ok(accounts[0] instanceof Account)\r
assert.equal(wallet.mnemonic, TREZOR_TEST_VECTORS.MNEMONIC_1)\r
assert.equal(wallet.seed, TREZOR_TEST_VECTORS.ENTROPY_1)\r
- assert.equal(accounts[0].privateKey, NANO_TEST_VECTORS.NANOS_CC_PRIVATE_1)\r
- assert.equal(accounts[0].publicKey, NANO_TEST_VECTORS.NANOS_CC_PUBLIC_1)\r
- assert.equal(accounts[0].address, NANO_TEST_VECTORS.NANOS_CC_ADDRESS_1)\r
+ assert.equal(accounts[0].privateKey, TREZOR_TEST_VECTORS.NANOS_CC_PRIVATE_1)\r
+ assert.equal(accounts[0].publicKey, TREZOR_TEST_VECTORS.NANOS_CC_PUBLIC_1)\r
+ assert.equal(accounts[0].address, TREZOR_TEST_VECTORS.NANOS_CC_ADDRESS_1)\r
})\r
\r
it('should get identical BLAKE2b wallets when created with a seed versus with its derived mnemonic', async () => {\r