Unverified Commit 664903dc authored by Guillaume Ballet's avatar Guillaume Ballet Committed by GitHub

cmd/geth: usb is off by default (#21984)

parent 9584f56b
...@@ -68,6 +68,7 @@ var ( ...@@ -68,6 +68,7 @@ var (
utils.KeyStoreDirFlag, utils.KeyStoreDirFlag,
utils.ExternalSignerFlag, utils.ExternalSignerFlag,
utils.NoUSBFlag, utils.NoUSBFlag,
utils.USBFlag,
utils.SmartCardDaemonPathFlag, utils.SmartCardDaemonPathFlag,
utils.EthashCacheDirFlag, utils.EthashCacheDirFlag,
utils.EthashCachesInMemoryFlag, utils.EthashCachesInMemoryFlag,
......
...@@ -37,7 +37,7 @@ var AppHelpFlagGroups = []flags.FlagGroup{ ...@@ -37,7 +37,7 @@ var AppHelpFlagGroups = []flags.FlagGroup{
utils.DataDirFlag, utils.DataDirFlag,
utils.AncientFlag, utils.AncientFlag,
utils.KeyStoreDirFlag, utils.KeyStoreDirFlag,
utils.NoUSBFlag, utils.USBFlag,
utils.SmartCardDaemonPathFlag, utils.SmartCardDaemonPathFlag,
utils.NetworkIdFlag, utils.NetworkIdFlag,
utils.GoerliFlag, utils.GoerliFlag,
...@@ -219,6 +219,7 @@ var AppHelpFlagGroups = []flags.FlagGroup{ ...@@ -219,6 +219,7 @@ var AppHelpFlagGroups = []flags.FlagGroup{
{ {
Name: "ALIASED (deprecated)", Name: "ALIASED (deprecated)",
Flags: append([]cli.Flag{ Flags: append([]cli.Flag{
utils.NoUSBFlag,
utils.LegacyRPCEnabledFlag, utils.LegacyRPCEnabledFlag,
utils.LegacyRPCListenAddrFlag, utils.LegacyRPCListenAddrFlag,
utils.LegacyRPCPortFlag, utils.LegacyRPCPortFlag,
......
...@@ -119,7 +119,11 @@ var ( ...@@ -119,7 +119,11 @@ var (
} }
NoUSBFlag = cli.BoolFlag{ NoUSBFlag = cli.BoolFlag{
Name: "nousb", Name: "nousb",
Usage: "Disables monitoring for and managing USB hardware wallets", Usage: "Disables monitoring for and managing USB hardware wallets (deprecated)",
}
USBFlag = cli.BoolFlag{
Name: "usb",
Usage: "Enable monitoring and management of USB hardware wallets",
} }
SmartCardDaemonPathFlag = cli.StringFlag{ SmartCardDaemonPathFlag = cli.StringFlag{
Name: "pcscdpath", Name: "pcscdpath",
...@@ -1225,8 +1229,11 @@ func SetNodeConfig(ctx *cli.Context, cfg *node.Config) { ...@@ -1225,8 +1229,11 @@ func SetNodeConfig(ctx *cli.Context, cfg *node.Config) {
if ctx.GlobalIsSet(LightKDFFlag.Name) { if ctx.GlobalIsSet(LightKDFFlag.Name) {
cfg.UseLightweightKDF = ctx.GlobalBool(LightKDFFlag.Name) cfg.UseLightweightKDF = ctx.GlobalBool(LightKDFFlag.Name)
} }
if ctx.GlobalIsSet(USBFlag.Name) {
cfg.NoUSB = !ctx.GlobalBool(USBFlag.Name)
}
if ctx.GlobalIsSet(NoUSBFlag.Name) { if ctx.GlobalIsSet(NoUSBFlag.Name) {
cfg.NoUSB = ctx.GlobalBool(NoUSBFlag.Name) log.Warn("Option nousb is deprecated and USB is deactivated by default. Use --usb to enable")
} }
if ctx.GlobalIsSet(InsecureUnlockAllowedFlag.Name) { if ctx.GlobalIsSet(InsecureUnlockAllowedFlag.Name) {
cfg.InsecureUnlockAllowed = ctx.GlobalBool(InsecureUnlockAllowedFlag.Name) cfg.InsecureUnlockAllowed = ctx.GlobalBool(InsecureUnlockAllowedFlag.Name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment