Skip to content

Commit

Permalink
Merge pull request #130 from asimaranov/develop
Browse files Browse the repository at this point in the history
fix: Missed hash function invocation
  • Loading branch information
rpanic authored Nov 21, 2024
2 parents ccf110a + d212dbf commit 04124a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sequencer/src/mempool/PendingTransaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,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(),
Expand Down

0 comments on commit 04124a9

Please sign in to comment.