aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/swarm/db.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/swarm/db.go')
-rw-r--r--cmd/swarm/db.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/cmd/swarm/db.go b/cmd/swarm/db.go
index fe03f2d16..107fbf100 100644
--- a/cmd/swarm/db.go
+++ b/cmd/swarm/db.go
@@ -93,21 +93,6 @@ func dbImport(ctx *cli.Context) {
log.Info(fmt.Sprintf("successfully imported %d chunks", count))
}
-func dbClean(ctx *cli.Context) {
- args := ctx.Args()
- if len(args) != 2 {
- utils.Fatalf("invalid arguments, please specify <chunkdb> (path to a local chunk database) and the base key")
- }
-
- store, err := openLDBStore(args[0], common.Hex2Bytes(args[1]))
- if err != nil {
- utils.Fatalf("error opening local chunk database: %s", err)
- }
- defer store.Close()
-
- store.Cleanup()
-}
-
func openLDBStore(path string, basekey []byte) (*storage.LDBStore, error) {
if _, err := os.Stat(filepath.Join(path, "CURRENT")); err != nil {
return nil, fmt.Errorf("invalid chunkdb path: %s", err)