Skip to content

Commit 9a527f9

Browse files
authored
fix: set pebbledb as default database (#2434)
* fix: set pebbledb as default database * changelog entry
1 parent 7e1dd53 commit 9a527f9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@
8989
* [2327](https://github.com/zeta-chain/node/pull/2327) - partially cherry picked the fix to Bitcoin outbound dust amount
9090
* [2362](https://github.com/zeta-chain/node/pull/2362) - set 1000 satoshis as minimum BTC amount that can be withdrawn from zEVM
9191
* [2382](https://github.com/zeta-chain/node/pull/2382) - add tx input and gas in rpc methods for synthetic eth txs
92+
* [2434](https://github.com/zeta-chain/node/pull/2434) - the default database when running `zetacored init` is now pebbledb
9293

9394
### CI
9495
* [2388](https://github.com/zeta-chain/node/pull/2388) - added GitHub attestations of binaries produced in the release workflow.

cmd/zetacored/root.go

+2
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ func initTmConfig() *tmcfg.Config {
114114
cfg.Mempool.Version = tmcfg.MempoolV1
115115
}
116116

117+
cfg.DBBackend = "pebbledb"
118+
117119
return cfg
118120
}
119121

0 commit comments

Comments
 (0)