aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2016-11-20 19:18:39 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2016-11-23 16:34:01 +0800
commitaad4890082c1624795991d534db9497c8b63630d (patch)
tree88dca9b73bdcdea2cbed32471c37933c308ac54d /cmd/utils
parenta0e42aa4e206247efe6df8706a2fb6bbdf6074b4 (diff)
downloadgo-tangerine-aad4890082c1624795991d534db9497c8b63630d.tar
go-tangerine-aad4890082c1624795991d534db9497c8b63630d.tar.gz
go-tangerine-aad4890082c1624795991d534db9497c8b63630d.tar.bz2
go-tangerine-aad4890082c1624795991d534db9497c8b63630d.tar.lz
go-tangerine-aad4890082c1624795991d534db9497c8b63630d.tar.xz
go-tangerine-aad4890082c1624795991d534db9497c8b63630d.tar.zst
go-tangerine-aad4890082c1624795991d534db9497c8b63630d.zip
cmd/geth, core, light, mobile: removed state account StartingNonce
All account's nonce start at 0.
Diffstat (limited to 'cmd/utils')
-rw-r--r--cmd/utils/flags.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index dd18fd78c..fcdd08737 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -38,7 +38,6 @@ import (
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/les"
- "github.com/ethereum/go-ethereum/light"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/metrics"
@@ -754,8 +753,6 @@ func RegisterEthService(ctx *cli.Context, stack *node.Node, extra []byte) {
ethConf.NetworkId = 2
}
ethConf.Genesis = core.TestNetGenesisBlock()
- state.StartingNonce = 1048576 // (2**20)
- light.StartingNonce = 1048576 // (2**20)
case ctx.GlobalBool(DevModeFlag.Name):
ethConf.Genesis = core.OlympicGenesisBlock()