|
|
@ -125,6 +125,10 @@ var ( |
|
|
|
Name: "dev", |
|
|
|
Name: "dev", |
|
|
|
Usage: "Developer mode. This mode creates a private network and sets several debugging flags", |
|
|
|
Usage: "Developer mode. This mode creates a private network and sets several debugging flags", |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
TestNetFlag = cli.BoolFlag{ |
|
|
|
|
|
|
|
Name: "testnet", |
|
|
|
|
|
|
|
Usage: "Testnet mode. This enables your node to operate on the testnet", |
|
|
|
|
|
|
|
} |
|
|
|
IdentityFlag = cli.StringFlag{ |
|
|
|
IdentityFlag = cli.StringFlag{ |
|
|
|
Name: "identity", |
|
|
|
Name: "identity", |
|
|
|
Usage: "Custom node name", |
|
|
|
Usage: "Custom node name", |
|
|
@ -452,6 +456,17 @@ func MakeEthConfig(clientID, version string, ctx *cli.Context) *eth.Config { |
|
|
|
AutoDAG: ctx.GlobalBool(AutoDAGFlag.Name) || ctx.GlobalBool(MiningEnabledFlag.Name), |
|
|
|
AutoDAG: ctx.GlobalBool(AutoDAGFlag.Name) || ctx.GlobalBool(MiningEnabledFlag.Name), |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ctx.GlobalBool(DevModeFlag.Name) && ctx.GlobalBool(TestNetFlag.Name) { |
|
|
|
|
|
|
|
glog.Fatalf("%s and %s are mutually exclusive\n", DevModeFlag.Name, TestNetFlag.Name) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ctx.GlobalBool(TestNetFlag.Name) { |
|
|
|
|
|
|
|
// testnet is always stored in the testnet folder
|
|
|
|
|
|
|
|
cfg.DataDir += "/testnet" |
|
|
|
|
|
|
|
cfg.NetworkId = 2 |
|
|
|
|
|
|
|
cfg.TestNet = true |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if ctx.GlobalBool(DevModeFlag.Name) { |
|
|
|
if ctx.GlobalBool(DevModeFlag.Name) { |
|
|
|
if !ctx.GlobalIsSet(VMDebugFlag.Name) { |
|
|
|
if !ctx.GlobalIsSet(VMDebugFlag.Name) { |
|
|
|
cfg.VmDebug = true |
|
|
|
cfg.VmDebug = true |
|
|
@ -540,6 +555,9 @@ func MakeChain(ctx *cli.Context) (chain *core.BlockChain, chainDb ethdb.Database |
|
|
|
// MakeChain creates an account manager from set command line flags.
|
|
|
|
// MakeChain creates an account manager from set command line flags.
|
|
|
|
func MakeAccountManager(ctx *cli.Context) *accounts.Manager { |
|
|
|
func MakeAccountManager(ctx *cli.Context) *accounts.Manager { |
|
|
|
dataDir := MustDataDir(ctx) |
|
|
|
dataDir := MustDataDir(ctx) |
|
|
|
|
|
|
|
if ctx.GlobalBool(TestNetFlag.Name) { |
|
|
|
|
|
|
|
dataDir += "/testnet" |
|
|
|
|
|
|
|
} |
|
|
|
ks := crypto.NewKeyStorePassphrase(filepath.Join(dataDir, "keystore")) |
|
|
|
ks := crypto.NewKeyStorePassphrase(filepath.Join(dataDir, "keystore")) |
|
|
|
return accounts.NewManager(ks) |
|
|
|
return accounts.NewManager(ks) |
|
|
|
} |
|
|
|
} |
|
|
|