From b959a64e77d8d5c312912f579b936c5101c5ff84 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Wed, 25 Jan 2023 16:29:18 +0100 Subject: [PATCH] remove unused TransactionType enumerator to raise coverage --- backend/src/graphql/enum/TransactionType.ts | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 backend/src/graphql/enum/TransactionType.ts diff --git a/backend/src/graphql/enum/TransactionType.ts b/backend/src/graphql/enum/TransactionType.ts deleted file mode 100644 index 2b6fc44d1..000000000 --- a/backend/src/graphql/enum/TransactionType.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { registerEnumType } from 'type-graphql' - -export enum TransactionType { - CREATION = 'creation', - SEND = 'send', - RECIEVE = 'receive', -} - -registerEnumType(TransactionType, { - name: 'TransactionType', // this one is mandatory - description: 'Name of the Type of the transaction', // this one is optional -})