Skip to content

Commit 930c590

Browse files
authored
Merge pull request #95 from sei-protocol/yzang/enable-seidb-bydefault
Enable SeiDB by default
2 parents caf79f2 + 23581e0 commit 930c590

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

config/config.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ type StateStoreConfig struct {
100100

101101
func DefaultStateCommitConfig() StateCommitConfig {
102102
return StateCommitConfig{
103+
Enable: true,
103104
AsyncCommitBuffer: DefaultAsyncCommitBuffer,
104105
CacheSize: DefaultCacheSize,
105106
SnapshotInterval: DefaultSnapshotInterval,
@@ -109,6 +110,7 @@ func DefaultStateCommitConfig() StateCommitConfig {
109110

110111
func DefaultStateStoreConfig() StateStoreConfig {
111112
return StateStoreConfig{
113+
Enable: true,
112114
Backend: "pebbledb",
113115
AsyncWriteBuffer: DefaultSSAsyncBuffer,
114116
KeepRecent: DefaultSSKeepRecent,

0 commit comments

Comments
 (0)