From 7d07f21704f3700205e3ce59b09623699084ed05 Mon Sep 17 00:00:00 2001 From: John Hilliard Date: Thu, 24 Oct 2024 22:41:51 -0400 Subject: [PATCH] fix: lint --- templates/cdk-erigon/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/cdk-erigon/config.yml b/templates/cdk-erigon/config.yml index be8da786..7d3755ed 100644 --- a/templates/cdk-erigon/config.yml +++ b/templates/cdk-erigon/config.yml @@ -149,7 +149,11 @@ zkevm.reject-smart-contract-deployments: false # Disables virtual counters, which are used by sequencer nodes when external execution is not enabled. # This can impact performance and transaction processing capabilities. # Default: false -zkevm.disable-virtual-counters: {{if eq .consensus_contract_type "pessimistic"}}true{{else}}false{{end}} +# {{if eq .consensus_contract_type "pessimistic"}} +zkevm.disable-virtual-counters: true +# {{else}} +zkevm.disable-virtual-counters: false +# {{end}} # Multiplier used to reduce the depth of SMT when calculating virtual counters. # A value less than 1 will decrease SMT depth, potentially improving performance but may affect accuracy.