change type of receiverCom.publicKey in where statement

This commit is contained in:
clauspeterhuebner 2025-12-10 01:14:34 +01:00
parent a73d7b5859
commit e7465ae093

View File

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