From aac32c5bff8145fa324925af877636b187b191ec Mon Sep 17 00:00:00 2001 From: nymkappa <1612910616@pm.me> Date: Tue, 9 Apr 2024 14:33:18 +0900 Subject: [PATCH] add additional error message --- .../shared/components/mempool-error/mempool-error.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/shared/components/mempool-error/mempool-error.component.ts b/frontend/src/app/shared/components/mempool-error/mempool-error.component.ts index ac5ac72a1..07b96427d 100644 --- a/frontend/src/app/shared/components/mempool-error/mempool-error.component.ts +++ b/frontend/src/app/shared/components/mempool-error/mempool-error.component.ts @@ -21,6 +21,7 @@ const MempoolErrors = { 'txid_not_in_mempool': `This transaction is not in the mempool.`, 'waitlisted': `You are currently on the wait list. You will get notified once you are granted access.`, 'not_whitelisted_by_any_pool': `You are not whitelisted by any mining pool`, + 'unauthorized': `You are not authorized to do this`, } as { [error: string]: string }; export function isMempoolError(error: string) {