Skip to content

Commit

Permalink
fix: config
Browse files Browse the repository at this point in the history
  • Loading branch information
JeancarloBarrios committed Dec 31, 2024
1 parent 60f97f1 commit 03ea5e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ type BaseConfig struct {
// Valid settings are "committing" (default) or "local".
// The committing client allows greater query parallelism,
// but the local client is more defensive.
ABCIClientType string `mapstructure:"abci-client-type"`
ABCIClientType string `mapstructure:"abci-client-type"` // [AGORIC]
}

// APIConfig defines the API listener configuration.
Expand Down Expand Up @@ -245,6 +245,7 @@ func DefaultConfig() *Config {
IAVLCacheSize: 781250,
IAVLDisableFastNode: false,
AppDBBackend: "",
ABCIClientType: DefaultABCIClientType, // [AGORIC]
},
Telemetry: telemetry.Config{
Enabled: false,
Expand Down

0 comments on commit 03ea5e4

Please sign in to comment.