You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow the users to use any Tendermint DB backend while creating Cosmos-specific databases.
Problem Definition
Currently when creating a new LevelDB, the only two supported database backends are LevelDB and ClevelDB. While this works great for most of the chains, someone might want to use different backends such as the ones supported by Tenderming (e.g. BoltDB or RocksDB).
Proposal
Implement such option would be a matter of changing the following lines inside the types/utils.go file:
Summary
Allow the users to use any Tendermint DB backend while creating Cosmos-specific databases.
Problem Definition
Currently when creating a new LevelDB, the only two supported database backends are
LevelDB
andClevelDB
. While this works great for most of the chains, someone might want to use different backends such as the ones supported by Tenderming (e.g.BoltDB
orRocksDB
).Proposal
Implement such option would be a matter of changing the following lines inside the
types/utils.go
file:to become
This change would be 100% compatible with the current code and allows for further customization while compiling the binaries.
For Admin Use
The text was updated successfully, but these errors were encountered: