Skip to content

Commit

Permalink
Blindly trying to fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Dec 20, 2024
1 parent 10870f4 commit 5e596f0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
12 changes: 10 additions & 2 deletions yarn-project/end-to-end/src/e2e_block_building.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -593,8 +593,16 @@ class TestPublicProcessorFactory extends PublicProcessorFactory {
worldStateDB: WorldStateDB,
telemetryClient: TelemetryClient,
globalVariables: GlobalVariables,
doMerkleOperations?: boolean,
doMerkleOperations: boolean,
enforceFeePayment: boolean,
): PublicTxSimulator {
return new TestPublicTxSimulator(db, worldStateDB, telemetryClient, globalVariables, doMerkleOperations);
return new TestPublicTxSimulator(
db,
worldStateDB,
telemetryClient,
globalVariables,
doMerkleOperations,
enforceFeePayment,
);
}
}
12 changes: 10 additions & 2 deletions yarn-project/simulator/src/public/public_processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,17 @@ export class PublicProcessorFactory {
worldStateDB: WorldStateDB,
telemetryClient: TelemetryClient,
globalVariables: GlobalVariables,
doMerkleOperations: boolean = false,
doMerkleOperations: boolean,
enforceFeePayment: boolean,
) {
return new PublicTxSimulator(db, worldStateDB, telemetryClient, globalVariables, doMerkleOperations);
return new PublicTxSimulator(
db,
worldStateDB,
telemetryClient,
globalVariables,
doMerkleOperations,
enforceFeePayment,
);
}
}

Expand Down

0 comments on commit 5e596f0

Please sign in to comment.