We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently newApp depends on openDB hard coded go level db implementation:
openDB
func openDB(rootDir string) (dbm.DB, error) { dataDir := filepath.Join(rootDir, "data") db, err := dbm.NewGoLevelDB("application", dataDir) return db, err }
we need pick up cosmos changes they recently merged: cosmos/cosmos-sdk#3792 if we want switch to cleveldb
The text was updated successfully, but these errors were encountered:
#85 application db should not bound to goleveldb implementation
eb8fa38
Merge pull request #87 from binance-chain/issue85
ec36057
[R4R] #85 application db should not bound to goleveldb implementation
fixed
Sorry, something went wrong.
ackratos
No branches or pull requests
currently newApp depends on
openDB
hard coded go level db implementation:we need pick up cosmos changes they recently merged: cosmos/cosmos-sdk#3792 if we want switch to cleveldb
The text was updated successfully, but these errors were encountered: