diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-05 18:40:56 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-01-05 18:40:56 +0800 |
commit | 06b381d1c9dd8e47d7862c0846352a0023e53ed0 (patch) | |
tree | 738b351b395d0d7282787e42730b873257ce066f /cmd | |
parent | 08eea0f0e417c5f6ff864ae4633cc3e0a12aa405 (diff) | |
download | dexon-06b381d1c9dd8e47d7862c0846352a0023e53ed0.tar.gz dexon-06b381d1c9dd8e47d7862c0846352a0023e53ed0.tar.zst dexon-06b381d1c9dd8e47d7862c0846352a0023e53ed0.zip |
cmd/utils: disallow `--fakepow` for live operation (#3512)
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/utils/flags.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 1cb975a17..9df891f78 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -749,7 +749,6 @@ func RegisterEthService(ctx *cli.Context, stack *node.Node, extra []byte) { GpobaseCorrectionFactor: ctx.GlobalInt(GpobaseCorrectionFactorFlag.Name), SolcPath: ctx.GlobalString(SolcPathFlag.Name), AutoDAG: ctx.GlobalBool(AutoDAGFlag.Name) || ctx.GlobalBool(MiningEnabledFlag.Name), - PowFake: ctx.GlobalBool(FakePoWFlag.Name), } // Override any default configs in dev mode or the test net |