Skip to content

Commit d212dbf

Browse files
committed
fix: Missed hash function invocation
1 parent 87c66f8 commit d212dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/sequencer/src/mempool/PendingTransaction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export class PendingTransaction extends UnsignedTransaction {
139139

140140
public toJSON(): PendingTransactionJSONType {
141141
return {
142-
hash: this.hash.toString(),
142+
hash: this.hash().toString(),
143143
methodId: this.methodId.toJSON(),
144144
nonce: this.nonce.toString(),
145145
sender: this.sender.toBase58(),

0 commit comments

Comments
 (0)