diff --git a/yarn-project/aztec-node/src/aztec-node/server.ts b/yarn-project/aztec-node/src/aztec-node/server.ts index c3362d1f801..778ca36f68e 100644 --- a/yarn-project/aztec-node/src/aztec-node/server.ts +++ b/yarn-project/aztec-node/src/aztec-node/server.ts @@ -867,7 +867,7 @@ export class AztecNodeService implements AztecNode, Traceable { public async isValidTx(tx: Tx, isSimulation: boolean = false): Promise { const blockNumber = (await this.blockSource.getBlockNumber()) + 1; const db = this.worldStateSynchronizer.getCommitted(); - const verifier = isSimulation ? this.proofVerifier : undefined; + const verifier = isSimulation ? undefined : this.proofVerifier; const validator = createValidatorForAcceptingTxs(db, this.contractDataSource, verifier, { blockNumber, l1ChainId: this.l1ChainId,