File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -305,6 +305,7 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso
305
305
utils .OlympicFlag ,
306
306
utils .FastSyncFlag ,
307
307
utils .CacheFlag ,
308
+ utils .LightKDFFlag ,
308
309
utils .JSpathFlag ,
309
310
utils .ListenPortFlag ,
310
311
utils .MaxPeersFlag ,
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ var AppHelpFlagGroups = []flagGroup{
69
69
utils .GenesisFileFlag ,
70
70
utils .IdentityFlag ,
71
71
utils .FastSyncFlag ,
72
+ utils .LightKDFFlag ,
72
73
utils .CacheFlag ,
73
74
utils .BlockchainVersionFlag ,
74
75
},
Original file line number Diff line number Diff line change @@ -150,11 +150,11 @@ var (
150
150
}
151
151
FastSyncFlag = cli.BoolFlag {
152
152
Name : "fast" ,
153
- Usage : "Enables fast syncing through state downloads" ,
153
+ Usage : "Enable fast syncing through state downloads" ,
154
154
}
155
155
LightKDFFlag = cli.BoolFlag {
156
156
Name : "lightkdf" ,
157
- Usage : "Reduce KDF memory & CPU usage at some expense of KDF strength" ,
157
+ Usage : "Reduce key-derivation RAM & CPU usage at some expense of KDF strength" ,
158
158
}
159
159
// Miner settings
160
160
// TODO: refactor CPU vs GPU mining flags
You can’t perform that action at this time.
0 commit comments