From bbb6d843bece5ff7b940d7295ba26adae1cbdfad Mon Sep 17 00:00:00 2001 From: Alex Gartner Date: Wed, 3 Jul 2024 16:09:19 -0700 Subject: [PATCH 1/2] fix: set pebbledb as default database --- cmd/zetacored/root.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/zetacored/root.go b/cmd/zetacored/root.go index 28654f885c..65a4e447c3 100644 --- a/cmd/zetacored/root.go +++ b/cmd/zetacored/root.go @@ -114,6 +114,8 @@ func initTmConfig() *tmcfg.Config { cfg.Mempool.Version = tmcfg.MempoolV1 } + cfg.DBBackend = "pebbledb" + return cfg } From daf1c7d8468fa64a3026e9dbc8fa7e800e80f2a7 Mon Sep 17 00:00:00 2001 From: Alex Gartner Date: Wed, 10 Jul 2024 10:53:19 -0700 Subject: [PATCH 2/2] changelog entry --- changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.md b/changelog.md index 7b679fb678..f2d05e4cea 100644 --- a/changelog.md +++ b/changelog.md @@ -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.