From 9cfd0f973dbb2620bc22d2f55e0b67e60202d6e1 Mon Sep 17 00:00:00 2001 From: Einhornimmond Date: Sat, 30 Dec 2023 09:17:14 +0100 Subject: [PATCH] lint --- dlt-connector/src/data/proto/3_3/TransactionBody.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlt-connector/src/data/proto/3_3/TransactionBody.ts b/dlt-connector/src/data/proto/3_3/TransactionBody.ts index a4169b488..1fd58105f 100644 --- a/dlt-connector/src/data/proto/3_3/TransactionBody.ts +++ b/dlt-connector/src/data/proto/3_3/TransactionBody.ts @@ -126,14 +126,14 @@ export class TransactionBody extends Message { public getRecipientPublicKey(): Buffer | undefined { if (this.transfer) { - // this.transfer.recipient contains the publicKey of the recipient + // this.transfer.recipient contains the publicKey of the recipient return this.transfer.recipient } if (this.creation) { return this.creation.recipient.pubkey } if (this.deferredTransfer) { - // this.deferredTransfer.transfer.recipient contains the publicKey of the recipient + // this.deferredTransfer.transfer.recipient contains the publicKey of the recipient return this.deferredTransfer.transfer.recipient } return undefined