Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Jan 3, 2025
1 parent bb837f5 commit e92b097
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/prover-node/src/job/epoch-proving-job.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ export class EpochProvingJob implements Traceable {
}

private getTxs(block: L2Block): Tx[] {
const txHashes = block.body.txEffects.map(tx => tx.txHash);
return this.txs.filter(tx => txHashes.includes(tx.getTxHash()));
const txHashes = block.body.txEffects.map(tx => tx.txHash.toBigInt());
return this.txs.filter(tx => txHashes.includes(tx.getTxHash().toBigInt()));
}

private getL1ToL2Messages(block: L2Block) {
Expand Down

0 comments on commit e92b097

Please sign in to comment.