diff options
author | zelig <viktor.tron@gmail.com> | 2015-01-09 14:21:47 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-01-09 14:21:47 +0800 |
commit | b3161f5803fdab9531c611659b7827ff1a2699dd (patch) | |
tree | 8e990b73858c4222d16a33c55119bf3ee56e2068 /core/genesis.go | |
parent | 5a9952c7b47f20451feea1158286450e08b85551 (diff) | |
parent | 26f066f0c7570bcca43299721c2b7a1a70186ee3 (diff) | |
download | go-tangerine-b3161f5803fdab9531c611659b7827ff1a2699dd.tar go-tangerine-b3161f5803fdab9531c611659b7827ff1a2699dd.tar.gz go-tangerine-b3161f5803fdab9531c611659b7827ff1a2699dd.tar.bz2 go-tangerine-b3161f5803fdab9531c611659b7827ff1a2699dd.tar.lz go-tangerine-b3161f5803fdab9531c611659b7827ff1a2699dd.tar.xz go-tangerine-b3161f5803fdab9531c611659b7827ff1a2699dd.tar.zst go-tangerine-b3161f5803fdab9531c611659b7827ff1a2699dd.zip |
Merge remote-tracking branch 'upstream/develop' into develop
Diffstat (limited to 'core/genesis.go')
-rw-r--r-- | core/genesis.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/genesis.go b/core/genesis.go index 1590818a8..d9edaace2 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -25,6 +25,7 @@ func GenesisBlock(db ethutil.Database) *types.Block { genesis.Header().GasLimit = big.NewInt(1000000) genesis.Header().GasUsed = ethutil.Big0 genesis.Header().Time = 0 + genesis.Td = ethutil.Big0 genesis.SetUncles([]*types.Header{}) genesis.SetTransactions(types.Transactions{}) |