diff options
author | zsfelfoldi <zsfelfoldi@gmail.com> | 2015-04-07 17:50:17 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-04-20 03:57:49 +0800 |
commit | b635cad9fe127e6b0ca6d993ce9a3b6c61ce79c6 (patch) | |
tree | 81d44673f4510e13f85f9aa9d5e0009b6638eacd /core/genesis.go | |
parent | 94489b2269133c545aa3e9580737b2bd93f3ead0 (diff) | |
download | go-tangerine-b635cad9fe127e6b0ca6d993ce9a3b6c61ce79c6.tar.gz go-tangerine-b635cad9fe127e6b0ca6d993ce9a3b6c61ce79c6.tar.zst go-tangerine-b635cad9fe127e6b0ca6d993ce9a3b6c61ce79c6.zip |
NatSpec passing end to end test
Diffstat (limited to 'core/genesis.go')
-rw-r--r-- | core/genesis.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/genesis.go b/core/genesis.go index 14ac2ec0f..c475ca637 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -58,13 +58,12 @@ func GenesisBlock(db common.Database) *types.Block { const ( TestAccount = "e273f01c99144c438695e10f24926dc1f9fbf62d" - TestBalance = "1000000000000000000" + TestBalance = "1000000000000" ) var genesisData = []byte(`{ "` + TestAccount + `": {"balance": "` + TestBalance + `"}, - "` + ContractAddrURLhint + `": {"balance": "` + TestBalance + `", "code": "` + ContractCodeURLhint + `" }, - "` + ContractAddrHashReg + `": {"balance": "` + TestBalance + `", "code": "` + ContractCodeHashReg + `" }, + ` + BuiltInContracts + ` "0000000000000000000000000000000000000001": {"balance": "1"}, "0000000000000000000000000000000000000002": {"balance": "1"}, "0000000000000000000000000000000000000003": {"balance": "1"}, |