diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-26 13:54:28 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | 18c57d4af12b9a532897459d8ad11579436b9bab (patch) | |
tree | c3f440ef44e1ea1da23783ef94fd05ba0cff9c4b /params/bootnodes.go | |
parent | ce9dd85433e342b9ee13848414bc694921be1100 (diff) | |
download | dexon-18c57d4af12b9a532897459d8ad11579436b9bab.tar dexon-18c57d4af12b9a532897459d8ad11579436b9bab.tar.gz dexon-18c57d4af12b9a532897459d8ad11579436b9bab.tar.bz2 dexon-18c57d4af12b9a532897459d8ad11579436b9bab.tar.lz dexon-18c57d4af12b9a532897459d8ad11579436b9bab.tar.xz dexon-18c57d4af12b9a532897459d8ad11579436b9bab.tar.zst dexon-18c57d4af12b9a532897459d8ad11579436b9bab.zip |
core: add Taipei testnet (#47)
Add a new testnet named Taipei.
Diffstat (limited to 'params/bootnodes.go')
-rw-r--r-- | params/bootnodes.go | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/params/bootnodes.go b/params/bootnodes.go index 3c6ec8555..742b696db 100644 --- a/params/bootnodes.go +++ b/params/bootnodes.go @@ -23,9 +23,15 @@ var MainnetBootnodes = []string{ } // TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the -// Ropsten test network. +// Taiwan test network. var TestnetBootnodes = []string{ - "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@127.0.0.1:30301", + "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@35.187.157.218:30301", +} + +// TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the +// Taipei test network. +var TaipeiBootnodes = []string{ + "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@35.229.247.207:30301", } // DiscoveryV5Bootnodes are the enode URLs of the P2P bootstrap nodes for the |