Skip to content

Use leveldb to instead boltdb on sqlchain #101

New issue

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

Merged
merged 12 commits into from
Nov 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cleanupDB.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ cd ${PROJECT_DIR} && find . -name '*.db-shm' -exec rm -f {} \;
cd ${PROJECT_DIR} && find . -name '*.db-wal' -exec rm -f {} \;
cd ${PROJECT_DIR} && find . -name 'db.meta' -exec rm -f {} \;
cd ${PROJECT_DIR} && find . -name 'public.keystore' -exec rm -f {} \;
cd ${PROJECT_DIR} && find . -name '*.public.keystore' -exec rm -f {} \;
cd ${PROJECT_DIR} && find . -name '*.public.keystore' -exec rm -f {} \;
cd ${PROJECT_DIR} && find . -type d -name '*.ldb' -prune -exec rm -rf {} \;
1 change: 0 additions & 1 deletion cmd/cql-minerd/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ func startNodes() {
log.Fatalf("wait for port ready timeout: %v", err)
}

utils.CleanupDB()
// start 3bps
var cmd *utils.CMD
if cmd, err = utils.RunCommandNB(
Expand Down
2 changes: 0 additions & 2 deletions cmd/cql-observer/observation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ func startNodes() {
log.Fatalf("wait for port ready timeout: %v", err)
}

utils.CleanupDB()

// start 3bps
var cmd *utils.CMD
if cmd, err = utils.RunCommandNB(
Expand Down
Loading