From 3e34770a6bb23461f0efd902fb3d519e30431ca6 Mon Sep 17 00:00:00 2001 From: iquidus Date: Wed, 15 Dec 2021 14:39:55 -0500 Subject: [PATCH] removedb: remove light db prompt (unsupported) --- cmd/gubiq/dbcmd.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/cmd/gubiq/dbcmd.go b/cmd/gubiq/dbcmd.go index 0ea91079ef20..d3526e67428b 100644 --- a/cmd/gubiq/dbcmd.go +++ b/cmd/gubiq/dbcmd.go @@ -240,13 +240,6 @@ func removeDB(ctx *cli.Context) error { } else { log.Info("Full node ancient database missing", "path", path) } - // Remove the light node database - path = stack.ResolvePath("lightchaindata") - if common.FileExist(path) { - confirmAndRemoveDB(path, "light node database") - } else { - log.Info("Light node database missing", "path", path) - } return nil }