From 881e78dfd55f8f355336bbd241a9bc05a9a42bf1 Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Wed, 3 Sep 2025 17:36:27 +0200
Subject: [PATCH] correct publicKey in DisbursementRequest of
EncryptedTransferArgs
---
backend/src/graphql/resolver/TransactionLinkResolver.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/backend/src/graphql/resolver/TransactionLinkResolver.ts b/backend/src/graphql/resolver/TransactionLinkResolver.ts
index 99668d724..4ddd082d2 100644
--- a/backend/src/graphql/resolver/TransactionLinkResolver.ts
+++ b/backend/src/graphql/resolver/TransactionLinkResolver.ts
@@ -565,7 +565,7 @@ export class TransactionLinkResolver {
methodLogger.debug('jws=', jws)
}
const args = new EncryptedTransferArgs()
- args.publicKey = senderCom.publicKey.toString('hex')
+ args.publicKey = recipientCom.publicKey.toString('hex')
args.jwt = jws
args.handshakeID = handshakeID
try {