From bfcb321f4e07ec3d12e19ccfc06d0f0c1dcb468c Mon Sep 17 00:00:00 2001 From: Kenny Joseph Date: Fri, 11 Sep 2026 10:00:40 -0400 Subject: [PATCH 1/2] fix BWC error typo --- src/constants/BWCError.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/constants/BWCError.ts b/src/constants/BWCError.ts index e3cb08560a..26b73b03c8 100644 --- a/src/constants/BWCError.ts +++ b/src/constants/BWCError.ts @@ -43,7 +43,9 @@ export enum BWCErrorName { MISSING_PARAMETER = 'MISSING_PARAMETER', MISSING_PRIVATE_KEY = 'MISSING_PRIVATE_KEY', NO_PASSWORD = 'NO_PASSWORD', + /** @deprecated Typo fixed in BWC 11.10.9. Use NO_TRANSACTION instead */ NO_TRASACTION = 'NO_TRASACTION', + NO_TRANSACTION = 'NO_TRANSACTION', NOT_AUTHORIZED = 'NOT_AUTHORIZED', NOT_ENOUGH_FEE = 'NOT_ENOUGH_FEE', NOT_FOUND = 'NOT_FOUND', @@ -198,6 +200,7 @@ const _getErrorMessage = (err: Error) => { case BWCErrorName.NO_PASSWORD: return t('No password'); case BWCErrorName.NO_TRASACTION: + case BWCErrorName.NO_TRANSACTION: return t( 'Your request did not include a transaction. Please try again or contact your wallet provider', ); From 972898e7152f246fc5deec82a145249676790c6e Mon Sep 17 00:00:00 2001 From: Kenny Joseph Date: Fri, 11 Sep 2026 10:43:14 -0400 Subject: [PATCH 2/2] update comment --- src/constants/BWCError.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants/BWCError.ts b/src/constants/BWCError.ts index 26b73b03c8..7175d49f5a 100644 --- a/src/constants/BWCError.ts +++ b/src/constants/BWCError.ts @@ -43,7 +43,7 @@ export enum BWCErrorName { MISSING_PARAMETER = 'MISSING_PARAMETER', MISSING_PRIVATE_KEY = 'MISSING_PRIVATE_KEY', NO_PASSWORD = 'NO_PASSWORD', - /** @deprecated Typo fixed in BWC 11.10.9. Use NO_TRANSACTION instead */ + /** @deprecated Typo fixed in BWC 11.10.10. Use NO_TRANSACTION instead */ NO_TRASACTION = 'NO_TRASACTION', NO_TRANSACTION = 'NO_TRANSACTION', NOT_AUTHORIZED = 'NOT_AUTHORIZED',