remove unused TransactionType enumerator to raise coverage

This commit is contained in:
Moriz Wahl 2023-01-25 16:29:18 +01:00
parent e7b27a32ee
commit b959a64e77

View File

@ -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
})