2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2014-12-04 09:28:02 +00:00
|
|
|
package core
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
import (
|
2015-02-20 17:05:46 +00:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2015-06-18 23:57:16 +00:00
|
|
|
"math/big"
|
2015-02-20 17:05:46 +00:00
|
|
|
"os"
|
2014-08-21 12:47:58 +00:00
|
|
|
|
2015-03-17 10:19:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-03-23 15:59:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2015-03-31 13:30:55 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2015-04-02 03:17:15 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2014-02-14 22:56:09 +00:00
|
|
|
)
|
|
|
|
|
2015-06-16 10:41:50 +00:00
|
|
|
// GenesisBlock creates a genesis block with the given nonce.
|
2015-06-08 10:12:13 +00:00
|
|
|
func GenesisBlock(nonce uint64, db common.Database) *types.Block {
|
2015-03-31 13:30:55 +00:00
|
|
|
var accounts map[string]struct {
|
|
|
|
Balance string
|
|
|
|
Code string
|
|
|
|
}
|
2015-05-31 13:53:17 +00:00
|
|
|
err := json.Unmarshal(GenesisAccounts, &accounts)
|
2015-02-20 17:05:46 +00:00
|
|
|
if err != nil {
|
2015-06-16 10:41:50 +00:00
|
|
|
fmt.Println("unable to decode genesis json data:", err)
|
2015-02-20 17:05:46 +00:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
2015-06-16 10:41:50 +00:00
|
|
|
statedb := state.New(common.Hash{}, db)
|
2015-02-20 17:05:46 +00:00
|
|
|
for addr, account := range accounts {
|
2015-03-16 10:27:38 +00:00
|
|
|
codedAddr := common.Hex2Bytes(addr)
|
2015-04-01 08:53:32 +00:00
|
|
|
accountState := statedb.CreateAccount(common.BytesToAddress(codedAddr))
|
2015-03-16 10:27:38 +00:00
|
|
|
accountState.SetBalance(common.Big(account.Balance))
|
2015-03-31 13:30:55 +00:00
|
|
|
accountState.SetCode(common.FromHex(account.Code))
|
2015-02-20 17:05:46 +00:00
|
|
|
statedb.UpdateStateObject(accountState)
|
2014-12-23 12:48:44 +00:00
|
|
|
}
|
|
|
|
statedb.Sync()
|
|
|
|
|
2015-06-16 10:41:50 +00:00
|
|
|
block := types.NewBlock(&types.Header{
|
|
|
|
Difficulty: params.GenesisDifficulty,
|
|
|
|
GasLimit: params.GenesisGasLimit,
|
|
|
|
Nonce: types.EncodeNonce(nonce),
|
|
|
|
Root: statedb.Root(),
|
|
|
|
}, nil, nil, nil)
|
|
|
|
block.Td = params.GenesisDifficulty
|
|
|
|
return block
|
2014-12-23 12:48:44 +00:00
|
|
|
}
|
2015-02-20 17:05:46 +00:00
|
|
|
|
2015-05-31 13:53:17 +00:00
|
|
|
var GenesisAccounts = []byte(`{
|
2015-03-03 20:48:05 +00:00
|
|
|
"0000000000000000000000000000000000000001": {"balance": "1"},
|
|
|
|
"0000000000000000000000000000000000000002": {"balance": "1"},
|
|
|
|
"0000000000000000000000000000000000000003": {"balance": "1"},
|
|
|
|
"0000000000000000000000000000000000000004": {"balance": "1"},
|
2015-02-20 17:05:46 +00:00
|
|
|
"dbdbdb2cbd23b783741e8d7fcf51e459b497e4a6": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
|
|
|
|
"e4157b34ea9615cfbde6b4fda419828124b70c78": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
|
|
|
|
"b9c015918bdaba24b4ff057a92a3873d6eb201be": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
|
|
|
|
"6c386a4b26f73c802f34673f7248bb118f97424a": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
|
|
|
|
"cd2a3d9f938e13cd947ec05abc7fe734df8dd826": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
|
|
|
|
"2ef47100e0787b915105fd5e3f4ff6752079d5cb": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
|
|
|
|
"e6716f9544a56c530d868e4bfbacb172315bdead": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
|
2015-03-03 20:48:05 +00:00
|
|
|
"1a26338f0d905e295fccb71fa9ea849ffa12aaf4": {"balance": "1606938044258990275541962092341162602522202993782792835301376"}
|
2015-02-20 17:05:46 +00:00
|
|
|
}`)
|
2015-06-18 23:57:16 +00:00
|
|
|
|
|
|
|
// GenesisBlockForTesting creates a block in which addr has the given wei balance.
|
|
|
|
// The state trie of the block is written to db.
|
|
|
|
func GenesisBlockForTesting(db common.Database, addr common.Address, balance *big.Int) *types.Block {
|
|
|
|
statedb := state.New(common.Hash{}, db)
|
|
|
|
obj := statedb.GetOrNewStateObject(addr)
|
|
|
|
obj.SetBalance(balance)
|
2015-07-01 10:07:14 +00:00
|
|
|
statedb.SyncObjects()
|
2015-06-18 23:57:16 +00:00
|
|
|
statedb.Sync()
|
|
|
|
block := types.NewBlock(&types.Header{
|
|
|
|
Difficulty: params.GenesisDifficulty,
|
|
|
|
GasLimit: params.GenesisGasLimit,
|
|
|
|
Root: statedb.Root(),
|
|
|
|
}, nil, nil, nil)
|
|
|
|
block.Td = params.GenesisDifficulty
|
|
|
|
return block
|
|
|
|
}
|