Skip to content

Commit

Permalink
bugfix: Change the Default DB engine to leveldb
Browse files Browse the repository at this point in the history
  • Loading branch information
gameofpointers committed Sep 6, 2023
1 parent 44408be commit 2fc3b3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ var (
DBEngineFlag = &cli.StringFlag{
Name: "db.engine",
Usage: "Backing database implementation to use ('leveldb' or 'pebble')",
Value: "pebble",
Value: "leveldb",
}
KeyStoreDirFlag = DirectoryFlag{
Name: "keystore",
Expand Down
2 changes: 1 addition & 1 deletion network.env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ ENABLE_PPROF=false
# Output format variables
SHOW_COLORS=true
RUN_BLAKE3=false
DB_ENGINE=pebble
DB_ENGINE=leveldb

0 comments on commit 2fc3b3a

Please sign in to comment.