From d212dbffb34ded5dcf930f45502e02f6c869a044 Mon Sep 17 00:00:00 2001 From: asimaranov Date: Wed, 1 May 2024 22:19:52 +0300 Subject: [PATCH] fix: Missed hash function invocation --- packages/sequencer/src/mempool/PendingTransaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sequencer/src/mempool/PendingTransaction.ts b/packages/sequencer/src/mempool/PendingTransaction.ts index b76a240a..3292c12b 100644 --- a/packages/sequencer/src/mempool/PendingTransaction.ts +++ b/packages/sequencer/src/mempool/PendingTransaction.ts @@ -139,7 +139,7 @@ export class PendingTransaction extends UnsignedTransaction { public toJSON(): PendingTransactionJSONType { return { - hash: this.hash.toString(), + hash: this.hash().toString(), methodId: this.methodId.toJSON(), nonce: this.nonce.toString(), sender: this.sender.toBase58(),