From dd6aa848ea380c0266d6af08498b423812cfe570 Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Fri, 29 May 2026 10:41:42 -0400 Subject: [PATCH] feat(giga): use giga executor with OCC by default --- giga/executor/config/config.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/giga/executor/config/config.go b/giga/executor/config/config.go index 6d282c4654..4ba2ccbf80 100644 --- a/giga/executor/config/config.go +++ b/giga/executor/config/config.go @@ -14,8 +14,8 @@ type Config struct { } var DefaultConfig = Config{ - Enabled: false, // disabled by default, opt-in - OCCEnabled: false, // OCC disabled by default + Enabled: true, + OCCEnabled: true, } const ( @@ -47,11 +47,11 @@ const ConfigTemplate = ` [giga_executor] # enabled controls whether to use the Giga executor for improved EVM throughput. -# Default: false +# Default: true enabled = {{ .GigaExecutor.Enabled }} # occ_enabled controls whether to use OCC (Optimistic Concurrency Control) with the Giga executor. # When true, transactions are executed in parallel with conflict detection and retry. -# Default: false +# Default: true occ_enabled = {{ .GigaExecutor.OCCEnabled }} `