changed controller to manager

This commit is contained in:
einhorn_b 2023-10-30 15:02:32 +01:00
parent d230985906
commit b5b1eb8a29
4 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { KeyManager } from '@/controller/KeyManager'
import { KeyManager } from '@/manager/KeyManager'
import { KeyPair } from '@/data/KeyPair'
import { AddressType } from '@/data/proto/3_3/enum/AddressType'
import { hardenDerivationIndex } from '@/utils/derivationHelper'

View File

@ -2,7 +2,7 @@ import { CommunityDraft } from '@/graphql/input/CommunityDraft'
import { Community } from '@entity/Community'
import { CommunityRole } from './Community.role'
import { Transaction } from '@entity/Transaction'
import { KeyManager } from '@/controller/KeyManager'
import { KeyManager } from '@/manager/KeyManager'
import { AccountFactory } from '@/data/Account.factory'
import { CreateTransactionRecipeContext } from '../transaction/CreateTransationRecipe.context'
import { logger } from '@/server/logger'