We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 427ae01 commit 8664348Copy full SHA for 8664348
internal/cli/removedb.go
@@ -27,7 +27,6 @@ const (
27
chaindataPath string = "chaindata"
28
ancientPath string = "ancient"
29
trieCacheJournalPath string = "triecache"
30
- lightchaindataPath string = "lightchaindata"
31
)
32
33
// MarkDown implements cli.MarkDown interface
@@ -102,14 +101,6 @@ func (c *RemoveDBCommand) Run(args []string) int {
102
101
log.Info("Full node ancient database missing", "path", path)
103
}
104
105
- // Remove the light node database
106
- path = nodeCfg.ResolvePath(lightchaindataPath)
107
- if common.FileExist(path) {
108
- confirmAndRemoveDB(c.UI, path, "light node database")
109
- } else {
110
- log.Info("Light node database missing", "path", path)
111
- }
112
-
113
return 0
114
115
0 commit comments