diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-26 10:00:31 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:54 +0800 |
commit | 622ae7fe3ef067d4f395937a9bb0f783a7c1e6c7 (patch) | |
tree | 995b1db1cb20fc0fecb240338d089f0c49d1d986 /core/genesis.go | |
parent | c11db35c2d3f5ca5f4b5749294e154f10ef6b1c1 (diff) | |
download | dexon-622ae7fe3ef067d4f395937a9bb0f783a7c1e6c7.tar.gz dexon-622ae7fe3ef067d4f395937a9bb0f783a7c1e6c7.tar.zst dexon-622ae7fe3ef067d4f395937a9bb0f783a7c1e6c7.zip |
core: various changes on tps tuning (#46)
Diffstat (limited to 'core/genesis.go')
-rw-r--r-- | core/genesis.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/genesis.go b/core/genesis.go index 09ab5b701..0b59f4bbb 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -387,7 +387,7 @@ func DefaultGenesisBlock() *Genesis { Timestamp: 1540024964, Nonce: 0x42, ExtraData: hexutil.MustDecode("0x5765692d4e696e6720536f6e696320426f6a696520323031382d31302d32302e"), - GasLimit: 80000000, + GasLimit: 40000000, Difficulty: big.NewInt(1), Alloc: decodePrealloc(mainnetAllocData), } @@ -399,7 +399,7 @@ func DefaultTestnetGenesisBlock() *Genesis { Config: params.TestnetChainConfig, Nonce: 0x42, ExtraData: hexutil.MustDecode("0x3535353535353535353535353535353535353535353535353535353535353535"), - GasLimit: 80000000, + GasLimit: 40000000, Difficulty: big.NewInt(1), Alloc: decodePrealloc(testnetAllocData), } |