Skip to content

Commit

Permalink
fix: set pebbledb as default database (#2434)
Browse files Browse the repository at this point in the history
* fix: set pebbledb as default database

* changelog entry
  • Loading branch information
gartnera authored Jul 10, 2024
1 parent 7e1dd53 commit 9a527f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
* [2327](https://github.com/zeta-chain/node/pull/2327) - partially cherry picked the fix to Bitcoin outbound dust amount
* [2362](https://github.com/zeta-chain/node/pull/2362) - set 1000 satoshis as minimum BTC amount that can be withdrawn from zEVM
* [2382](https://github.com/zeta-chain/node/pull/2382) - add tx input and gas in rpc methods for synthetic eth txs
* [2434](https://github.com/zeta-chain/node/pull/2434) - the default database when running `zetacored init` is now pebbledb

### CI
* [2388](https://github.com/zeta-chain/node/pull/2388) - added GitHub attestations of binaries produced in the release workflow.
Expand Down
2 changes: 2 additions & 0 deletions cmd/zetacored/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ func initTmConfig() *tmcfg.Config {
cfg.Mempool.Version = tmcfg.MempoolV1
}

cfg.DBBackend = "pebbledb"

return cfg
}

Expand Down

0 comments on commit 9a527f9

Please sign in to comment.