From e0c46267f832a0fd1e2ebef9b20817e333e94505 Mon Sep 17 00:00:00 2001 From: HashMapsData2Value <83883690+HashMapsData2Value@users.noreply.github.com> Date: Thu, 19 Sep 2024 12:33:47 +0200 Subject: [PATCH] fix: remove other KeyContexts Removes KeyContexts that are not used. --- x.hd.wallet.api.crypto.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/x.hd.wallet.api.crypto.ts b/x.hd.wallet.api.crypto.ts index 694312c..ed44132 100644 --- a/x.hd.wallet.api.crypto.ts +++ b/x.hd.wallet.api.crypto.ts @@ -19,11 +19,7 @@ import { deriveChildNodePrivate } from './bip32-ed25519'; */ export enum KeyContext { Address = 0, - Identity = 1, - Cardano = 2, - TESTVECTOR_1 = 3, - TESTVECTOR_2 = 4, - TESTVECTOR_3 = 5 + Identity = 1 } export enum BIP32DerivationType { @@ -341,4 +337,4 @@ export class XHDWalletAPI { return crypto_generichash(32, new Uint8Array(concatenation)) } -} \ No newline at end of file +}