You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: cmd/geth/dbcmd.go
+10
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,7 @@ Remove blockchain and state databases`,
87
87
utils.GoerliFlag,
88
88
utils.ScrollAlphaFlag,
89
89
utils.ScrollSepoliaFlag,
90
+
utils.ScrollFlag,
90
91
},
91
92
Usage: "Inspect the storage size for each type of data in the database",
92
93
Description: `This commands iterates the entire database. If the optional 'prefix' and 'start' arguments are provided, then the iteration is limited to the given subset of data.`,
@@ -105,6 +106,7 @@ Remove blockchain and state databases`,
105
106
utils.GoerliFlag,
106
107
utils.ScrollAlphaFlag,
107
108
utils.ScrollSepoliaFlag,
109
+
utils.ScrollFlag,
108
110
},
109
111
}
110
112
dbCompactCmd= cli.Command{
@@ -121,6 +123,7 @@ Remove blockchain and state databases`,
121
123
utils.GoerliFlag,
122
124
utils.ScrollAlphaFlag,
123
125
utils.ScrollSepoliaFlag,
126
+
utils.ScrollFlag,
124
127
utils.CacheFlag,
125
128
utils.CacheDatabaseFlag,
126
129
},
@@ -143,6 +146,7 @@ corruption if it is aborted during execution'!`,
143
146
utils.GoerliFlag,
144
147
utils.ScrollAlphaFlag,
145
148
utils.ScrollSepoliaFlag,
149
+
utils.ScrollFlag,
146
150
},
147
151
Description: "This command looks up the specified database key from the database.",
148
152
}
@@ -161,6 +165,7 @@ corruption if it is aborted during execution'!`,
161
165
utils.GoerliFlag,
162
166
utils.ScrollAlphaFlag,
163
167
utils.ScrollSepoliaFlag,
168
+
utils.ScrollFlag,
164
169
},
165
170
Description: `This command deletes the specified database key from the database.
166
171
WARNING: This is a low-level operation which may cause database corruption!`,
@@ -180,6 +185,7 @@ WARNING: This is a low-level operation which may cause database corruption!`,
180
185
utils.GoerliFlag,
181
186
utils.ScrollAlphaFlag,
182
187
utils.ScrollSepoliaFlag,
188
+
utils.ScrollFlag,
183
189
},
184
190
Description: `This command sets a given database key to the given value.
185
191
WARNING: This is a low-level operation which may cause database corruption!`,
@@ -199,6 +205,7 @@ WARNING: This is a low-level operation which may cause database corruption!`,
199
205
utils.GoerliFlag,
200
206
utils.ScrollAlphaFlag,
201
207
utils.ScrollSepoliaFlag,
208
+
utils.ScrollFlag,
202
209
},
203
210
Description: "This command looks up the specified database key from the database.",
204
211
}
@@ -217,6 +224,7 @@ WARNING: This is a low-level operation which may cause database corruption!`,
217
224
utils.GoerliFlag,
218
225
utils.ScrollAlphaFlag,
219
226
utils.ScrollSepoliaFlag,
227
+
utils.ScrollFlag,
220
228
},
221
229
Description: "This command displays information about the freezer index.",
222
230
}
@@ -234,6 +242,7 @@ WARNING: This is a low-level operation which may cause database corruption!`,
234
242
utils.GoerliFlag,
235
243
utils.ScrollAlphaFlag,
236
244
utils.ScrollSepoliaFlag,
245
+
utils.ScrollFlag,
237
246
},
238
247
Description: "The import command imports the specific chain data from an RLP encoded stream.",
239
248
}
@@ -251,6 +260,7 @@ WARNING: This is a low-level operation which may cause database corruption!`,
251
260
utils.GoerliFlag,
252
261
utils.ScrollAlphaFlag,
253
262
utils.ScrollSepoliaFlag,
263
+
utils.ScrollFlag,
254
264
},
255
265
Description: "Exports the specified chain data to an RLP encoded stream, optionally gzip-compressed.",
0 commit comments