diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-16 22:58:19 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:53 +0800 |
commit | b10800e73a626c6015c11cc3113d156658100798 (patch) | |
tree | bad49a6b082faa5ee876668b5d2a5bde3e201b57 /params | |
parent | b0d9fe6fa466b85aee325a36164ae2d7b5721602 (diff) | |
download | dexon-b10800e73a626c6015c11cc3113d156658100798.tar dexon-b10800e73a626c6015c11cc3113d156658100798.tar.gz dexon-b10800e73a626c6015c11cc3113d156658100798.tar.bz2 dexon-b10800e73a626c6015c11cc3113d156658100798.tar.lz dexon-b10800e73a626c6015c11cc3113d156658100798.tar.xz dexon-b10800e73a626c6015c11cc3113d156658100798.tar.zst dexon-b10800e73a626c6015c11cc3113d156658100798.zip |
params: update seed node ip
Diffstat (limited to 'params')
-rw-r--r-- | params/bootnodes.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/params/bootnodes.go b/params/bootnodes.go index 31dda1fd4..379e97381 100644 --- a/params/bootnodes.go +++ b/params/bootnodes.go @@ -19,13 +19,13 @@ package params // MainnetBootnodes are the enode URLs of the P2P bootstrap nodes running on // the main Ethereum network. var MainnetBootnodes = []string{ - "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@10.17.1.70:30301", + "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@127.0.0.1:30301", } // TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the // Ropsten test network. var TestnetBootnodes = []string{ - "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@10.17.1.70:30301", + "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@127.0.0.1:30301", } // RinkebyBootnodes are the enode URLs of the P2P bootstrap nodes running on the |