Skip to content

Commit 04124a9

Browse files
authored
Merge pull request #130 from asimaranov/develop
fix: Missed hash function invocation
2 parents ccf110a + d212dbf commit 04124a9

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
@@ -152,7 +152,7 @@ export class PendingTransaction extends UnsignedTransaction {
152152

153153
public toJSON(): PendingTransactionJSONType {
154154
return {
155-
hash: this.hash.toString(),
155+
hash: this.hash().toString(),
156156
methodId: this.methodId.toJSON(),
157157
nonce: this.nonce.toString(),
158158
sender: this.sender.toBase58(),

0 commit comments

Comments
 (0)