From e7465ae093ee86e84e33bdccbd3697a22745be62 Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Wed, 10 Dec 2025 01:14:34 +0100
Subject: [PATCH] change type of receiverCom.publicKey in where statement
---
core/src/graphql/logic/processXComSendCoins.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/graphql/logic/processXComSendCoins.ts b/core/src/graphql/logic/processXComSendCoins.ts
index 443b87288..8187165fd 100644
--- a/core/src/graphql/logic/processXComSendCoins.ts
+++ b/core/src/graphql/logic/processXComSendCoins.ts
@@ -253,7 +253,7 @@ export async function processXComPendingSendCoins(
const receiverFCom = await DbFederatedCommunity.findOneOrFail({
where: {
- publicKey: Buffer.from(receiverCom.publicKey),
+ publicKey: receiverCom.publicKey,
apiVersion: CONFIG_CORE.FEDERATION_BACKEND_SEND_ON_API,
},
})