diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-10-09 16:31:37 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-10-09 16:31:37 +0800 |
commit | 315a422ba754eae10db21990a809f608f7af62d4 (patch) | |
tree | 56924b100b906cd4f6da5ac13540c175df756988 /core/state | |
parent | 9e91579105e94395a108d43ec3ac0ae0e0f139c5 (diff) | |
parent | 1de796f10134bb4aa245591e0d8802e320892efb (diff) | |
download | dexon-315a422ba754eae10db21990a809f608f7af62d4.tar dexon-315a422ba754eae10db21990a809f608f7af62d4.tar.gz dexon-315a422ba754eae10db21990a809f608f7af62d4.tar.bz2 dexon-315a422ba754eae10db21990a809f608f7af62d4.tar.lz dexon-315a422ba754eae10db21990a809f608f7af62d4.tar.xz dexon-315a422ba754eae10db21990a809f608f7af62d4.tar.zst dexon-315a422ba754eae10db21990a809f608f7af62d4.zip |
Merge pull request #1888 from obscuren/testnet
cmd, core, eth: added official testnet
Diffstat (limited to 'core/state')
-rw-r--r-- | core/state/statedb.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/state/statedb.go b/core/state/statedb.go index 499ea5f52..ad673aecb 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -28,6 +28,10 @@ import ( "github.com/ethereum/go-ethereum/trie" ) +// The starting nonce determines the default nonce when new accounts are being +// created. +var StartingNonce uint64 + // StateDBs within the ethereum protocol are used to store anything // within the merkle trie. StateDBs take care of caching and storing // nested states. It's the general query interface to retrieve: @@ -263,6 +267,7 @@ func (self *StateDB) newStateObject(addr common.Address) *StateObject { } stateObject := NewStateObject(addr, self.db) + stateObject.SetNonce(StartingNonce) self.stateObjects[addr.Str()] = stateObject return stateObject |