diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-15 15:50:20 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | e46ad7c8d025de2441bc0dda5b6e4284f7dad751 (patch) | |
tree | a45afea387f9f0bcb2e954a6043734722ad2a616 | |
parent | 6dd2ae43311c369a37c5451df6aed5f6fcd20c6f (diff) | |
download | dexon-e46ad7c8d025de2441bc0dda5b6e4284f7dad751.tar dexon-e46ad7c8d025de2441bc0dda5b6e4284f7dad751.tar.gz dexon-e46ad7c8d025de2441bc0dda5b6e4284f7dad751.tar.bz2 dexon-e46ad7c8d025de2441bc0dda5b6e4284f7dad751.tar.lz dexon-e46ad7c8d025de2441bc0dda5b6e4284f7dad751.tar.xz dexon-e46ad7c8d025de2441bc0dda5b6e4284f7dad751.tar.zst dexon-e46ad7c8d025de2441bc0dda5b6e4284f7dad751.zip |
dex: run consensus core on Start
-rw-r--r-- | dex/backend.go | 1 | ||||
-rw-r--r-- | params/bootnodes.go | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/dex/backend.go b/dex/backend.go index ca76eeed3..d0ddab523 100644 --- a/dex/backend.go +++ b/dex/backend.go @@ -199,6 +199,7 @@ func (s *Dexon) Start(srvr *p2p.Server) error { s.protocolManager.Start(srvr, maxPeers) s.protocolManager.addSelfMeta() + go s.consensus.Run() return nil } diff --git a/params/bootnodes.go b/params/bootnodes.go index c2b69fa2e..e25b6de1e 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@35.201.201.33:30301", + "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@10.17.1.70:30301", } // TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the // Ropsten test network. var TestnetBootnodes = []string{ - "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@35.201.201.33:30301", + "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@10.17.1.70:30301", } // RinkebyBootnodes are the enode URLs of the P2P bootstrap nodes running on the |