Skip to content

Commit

Permalink
chore: make default db backend PebbleDB (#1908)
Browse files Browse the repository at this point in the history
* chore: make default db backend PebbleDB

* chore: update changelog

---------

Co-authored-by: Unique Divine <[email protected]>
  • Loading branch information
k-yang and Unique-Divine authored Jun 6, 2024
1 parent ad173e9 commit 70ee1bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion cmd/nibid/cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 70ee1bf

Please sign in to comment.