Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions giga/executor/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down Expand Up @@ -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 }}
`
Loading