diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-16 22:58:19 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | 1ec830bc3bc756d0297f344007ac914b973cd175 (patch) | |
tree | db219f26ba977a41e694deaf014f5cec3eaefa6e /params/bootnodes.go | |
parent | dad90cd32dc6c80f0decbf658bd35e59c794041e (diff) | |
download | dexon-1ec830bc3bc756d0297f344007ac914b973cd175.tar.gz dexon-1ec830bc3bc756d0297f344007ac914b973cd175.tar.zst dexon-1ec830bc3bc756d0297f344007ac914b973cd175.zip |
params: update seed node ip
Diffstat (limited to 'params/bootnodes.go')
-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 e25b6de1e..6d677ec5c 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 |