diff options
author | Jhih-Ming Huang <fbihjmeric@gmail.com> | 2019-10-03 10:56:32 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-10-03 10:56:32 +0800 |
commit | 05a249d001cb80676e4ad5524d585b45ef8bf507 (patch) | |
tree | 95adf0c0a967cdca5c3d0f762d646fb6f0b682d9 | |
parent | 8e9e878ad201d4cd2a01d134ecae561db0046d09 (diff) | |
download | go-tangerine-05a249d001cb80676e4ad5524d585b45ef8bf507.tar.gz go-tangerine-05a249d001cb80676e4ad5524d585b45ef8bf507.tar.zst go-tangerine-05a249d001cb80676e4ad5524d585b45ef8bf507.zip |
params: update testnet dMoment (#3)
-rw-r--r-- | params/bootnodes.go | 2 | ||||
-rw-r--r-- | params/config.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/params/bootnodes.go b/params/bootnodes.go index 7833f6cf8..07b0f8f45 100644 --- a/params/bootnodes.go +++ b/params/bootnodes.go @@ -25,7 +25,7 @@ var MainnetBootnodes = []string{ // TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the // Taiwan test network. var TestnetBootnodes = []string{ - "enode://3914afa7fdf6c62d50e56b1d27d4ce181d718930e1011103e21954d616083ce2d257a38a0e7f174045dc8f4d941586a090b01c2265a3a27920ff902b384fa2e8@34.83.238.227:30301", + "enode://3914afa7fdf6c62d50e56b1d27d4ce181d718930e1011103e21954d616083ce2d257a38a0e7f174045dc8f4d941586a090b01c2265a3a27920ff902b384fa2e8@35.221.242.57:30301", } // TaipeiBootnodes are the enode URLs of the P2P bootstrap nodes running on the diff --git a/params/config.go b/params/config.go index 16e1ec813..595130f47 100644 --- a/params/config.go +++ b/params/config.go @@ -27,7 +27,7 @@ import ( // Genesis hashes to enforce below configs on. var ( MainnetGenesisHash = common.HexToHash("0xcbfc86c8cf68d0207a1dff32b7397d9ecfef91371af0725509d78d9d578b405d") - TestnetGenesisHash = common.HexToHash("0xf13824fa7d40d1697a37248c8b03d6e026079b108ad2d1916e74da41e1b6f877") + TestnetGenesisHash = common.HexToHash("0x5f3764f4188f17d4b3f0dcfc0ac183f49bc5b862491a0bf00d5f7719a63c3150") ) // TrustedCheckpoints associates each known checkpoint with the genesis hash of @@ -85,7 +85,7 @@ var ( // TestnetChainConfig contains the chain parameters to run a node on the Taiwan test network. TestnetChainConfig = &ChainConfig{ ChainID: big.NewInt(374), - DMoment: 1566921300, + DMoment: 1569913393, HomesteadBlock: big.NewInt(0), DAOForkBlock: big.NewInt(0), DAOForkSupport: true, |