mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
rename db.engine key for config files (#969)
This commit is contained in:
parent
66e8296287
commit
c7561dbb62
2 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ chain = "mainnet"
|
|||
# vmdebug = false
|
||||
datadir = "/var/lib/bor/data"
|
||||
# ancient = ""
|
||||
db.engine = "leveldb"
|
||||
# db.engine = "leveldb"
|
||||
# keystore = "/var/lib/bor/keystore"
|
||||
# "rpc.batchlimit" = 100
|
||||
# "rpc.returndatalimit" = 100000
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ type Config struct {
|
|||
Ancient string `hcl:"ancient,optional" toml:"ancient,optional"`
|
||||
|
||||
// DBEngine is used to select leveldb or pebble as database
|
||||
DBEngine string `hcl:"dbengine,optional" toml:"dbengine,optional"`
|
||||
DBEngine string `hcl:"db.engine,optional" toml:"db.engine,optional"`
|
||||
|
||||
// KeyStoreDir is the directory to store keystores
|
||||
KeyStoreDir string `hcl:"keystore,optional" toml:"keystore,optional"`
|
||||
|
|
|
|||
Loading…
Reference in a new issue