From 5155578df7b975dbb61aeac555dc653658a81d9e Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Fri, 30 Jan 2026 00:06:32 +0100
Subject: [PATCH] correct imports
---
core/src/federation/client/1_0/CommandClient.ts | 3 ++-
core/src/graphql/logic/processXComSendCoins.ts | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/core/src/federation/client/1_0/CommandClient.ts b/core/src/federation/client/1_0/CommandClient.ts
index 448615765..f5e88cad3 100644
--- a/core/src/federation/client/1_0/CommandClient.ts
+++ b/core/src/federation/client/1_0/CommandClient.ts
@@ -1,9 +1,10 @@
-import { EncryptedTransferArgs, ensureUrlEndsWithSlash } from 'core'
+import { EncryptedTransferArgs } from '../../../graphql/model/EncryptedTransferArgs'
import { FederatedCommunity as DbFederatedCommunity } from 'database'
import { GraphQLClient } from 'graphql-request'
import { getLogger } from 'log4js'
import { LOG4JS_BASE_CATEGORY_NAME } from '../../../config/const'
import { sendCommand } from './query/sendCommand'
+import { ensureUrlEndsWithSlash } from '../../../util/utilities'
const logger = getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.federation.client.1_0.CommandClient`)
diff --git a/core/src/graphql/logic/processXComSendCoins.ts b/core/src/graphql/logic/processXComSendCoins.ts
index 345c6e406..9a4ba4fd0 100644
--- a/core/src/graphql/logic/processXComSendCoins.ts
+++ b/core/src/graphql/logic/processXComSendCoins.ts
@@ -39,7 +39,7 @@ import { fullName } from '../../util/utilities'
import { settlePendingSenderTransaction } from './settlePendingSenderTransaction'
import { storeForeignUser } from './storeForeignUser'
import { storeLinkAsRedeemed } from './storeLinkAsRedeemed'
-import { V1_0_CommandClient } from '../..'
+import { CommandClient as V1_0_CommandClient } from '../../federation/client/1_0/CommandClient'
import { SendEmailCommand } from '../../command/commands/SendEmailCommand'
const createLogger = (method: string) =>