From 70ee1bfe3a04a69caa564568e211aeacec5a9159 Mon Sep 17 00:00:00 2001 From: Kevin Yang <5478483+k-yang@users.noreply.github.com> Date: Wed, 5 Jun 2024 19:39:21 -0500 Subject: [PATCH] chore: make default db backend PebbleDB (#1908) * chore: make default db backend PebbleDB * chore: update changelog --------- Co-authored-by: Unique Divine <51418232+Unique-Divine@users.noreply.github.com> --- CHANGELOG.md | 1 + cmd/nibid/cmd/init.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8816b5a0..d36fea766 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [#1872](https://github.com/NibiruChain/nibiru/pull/1872) - chore(math): use cosmossdk.io/math to replace sdk types - [#1874](https://github.com/NibiruChain/nibiru/pull/1874) - chore(proto): remove the proto stringer as per Cosmos SDK migration guidelines - [#1906](https://github.com/NibiruChain/nibiru/pull/1906) - feat(wasm): increase contract size limit to 3MB +- [#1908](https://github.com/NibiruChain/nibiru/pull/1908) - chore: make pebbledb the default db backend #### Nibiru EVM diff --git a/cmd/nibid/cmd/init.go b/cmd/nibid/cmd/init.go index 534ee07c5..cc8295bcf 100644 --- a/cmd/nibid/cmd/init.go +++ b/cmd/nibid/cmd/init.go @@ -53,7 +53,7 @@ func customTendermintConfig() *tmcfg.Config { cfg.Consensus.TimeoutPrecommitDelta = ms(500) cfg.Consensus.TimeoutCommit = ms(1_000) - cfg.DBBackend = string(db.RocksDBBackend) + cfg.DBBackend = string(db.PebbleDBBackend) return cfg }