diff options
author | Mission Liao <mission.liao@dexon.org> | 2019-02-25 19:08:17 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:22 +0800 |
commit | 20718c049c3988f6aac25bee2d33f959ad517deb (patch) | |
tree | 19fc4ec3a0f5fbcfa753353c87a5da545a8c4cd0 /params/bootnodes.go | |
parent | 8e92e73dc650ac03c228fbb26a3afe88a5bc237c (diff) | |
download | go-tangerine-20718c049c3988f6aac25bee2d33f959ad517deb.tar go-tangerine-20718c049c3988f6aac25bee2d33f959ad517deb.tar.gz go-tangerine-20718c049c3988f6aac25bee2d33f959ad517deb.tar.bz2 go-tangerine-20718c049c3988f6aac25bee2d33f959ad517deb.tar.lz go-tangerine-20718c049c3988f6aac25bee2d33f959ad517deb.tar.xz go-tangerine-20718c049c3988f6aac25bee2d33f959ad517deb.tar.zst go-tangerine-20718c049c3988f6aac25bee2d33f959ad517deb.zip |
params: add Yilan network (#207)
* Add Yilan network
* Fixup: remove dummy log
Diffstat (limited to 'params/bootnodes.go')
-rw-r--r-- | params/bootnodes.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/params/bootnodes.go b/params/bootnodes.go index 2530215bf..d655680fb 100644 --- a/params/bootnodes.go +++ b/params/bootnodes.go @@ -28,12 +28,18 @@ var TestnetBootnodes = []string{ "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@35.234.27.122:30301", } -// TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the +// TaipeiBootnodes are the enode URLs of the P2P bootstrap nodes running on the // Taipei test network. var TaipeiBootnodes = []string{ "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@34.80.219.23:30301", } +// YilanBootnodes are the enode URLs of the P2P bootstrap nodes running on the +// Yilan test network. +var YilanBootnodes = []string{ + "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@34.80.4.56:30301", +} + // DiscoveryV5Bootnodes are the enode URLs of the P2P bootstrap nodes for the // experimental RLPx v5 topic-discovery network. var DiscoveryV5Bootnodes = []string{} |