This commit is contained in:
@@ -166,7 +166,7 @@ type MempoolConfig struct {
|
||||
// the mempool is disabled entirely, zero indicates that the mempool is
|
||||
// unbounded in how many txs it may contain, and a positive value indicates
|
||||
// the maximum amount of txs it may contain.
|
||||
MaxTxs int
|
||||
MaxTxs int `mapstructure:"max-txs"`
|
||||
}
|
||||
|
||||
// State Streaming configuration
|
||||
|
||||
@@ -208,3 +208,21 @@ func TestSetConfigTemplate(t *testing.T) {
|
||||
actual := setBuffer.String()
|
||||
require.Equal(t, expected, actual, "resulting config strings")
|
||||
}
|
||||
|
||||
func TestAppConfig(t *testing.T) {
|
||||
appConfigFile := filepath.Join(t.TempDir(), "app.toml")
|
||||
defer func() {
|
||||
_ = os.Remove(appConfigFile)
|
||||
}()
|
||||
|
||||
defAppConfig := DefaultConfig()
|
||||
SetConfigTemplate(DefaultConfigTemplate)
|
||||
WriteConfigFile(appConfigFile, defAppConfig)
|
||||
|
||||
v := viper.New()
|
||||
v.SetConfigFile(appConfigFile)
|
||||
require.NoError(t, v.ReadInConfig())
|
||||
appCfg := new(Config)
|
||||
require.NoError(t, v.Unmarshal(appCfg))
|
||||
require.EqualValues(t, appCfg, defAppConfig)
|
||||
}
|
||||
|
||||
@@ -234,7 +234,7 @@ stop-node-on-err = {{ .Streaming.ABCI.StopNodeOnErr }}
|
||||
#
|
||||
# Note, this configuration only applies to SDK built-in app-side mempool
|
||||
# implementations.
|
||||
max-txs = "{{ .Mempool.MaxTxs }}"
|
||||
max-txs = {{ .Mempool.MaxTxs }}
|
||||
`
|
||||
|
||||
var configTemplate *template.Template
|
||||
|
||||
Reference in New Issue
Block a user