aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-03 02:46:37 +0800
committerobscuren <geffobscura@gmail.com>2014-02-03 02:46:37 +0800
commitf4a96ca588a4c7e1382e9c2265ca306a5b0d0adf (patch)
treebdc84be2083eee99b3f646ffa8bc0c22b39f0127 /ethereum.go
parent48b41862ef89e3d694b71d452e7f67bfb34ca17f (diff)
downloaddexon-f4a96ca588a4c7e1382e9c2265ca306a5b0d0adf.tar
dexon-f4a96ca588a4c7e1382e9c2265ca306a5b0d0adf.tar.gz
dexon-f4a96ca588a4c7e1382e9c2265ca306a5b0d0adf.tar.bz2
dexon-f4a96ca588a4c7e1382e9c2265ca306a5b0d0adf.tar.lz
dexon-f4a96ca588a4c7e1382e9c2265ca306a5b0d0adf.tar.xz
dexon-f4a96ca588a4c7e1382e9c2265ca306a5b0d0adf.tar.zst
dexon-f4a96ca588a4c7e1382e9c2265ca306a5b0d0adf.zip
Removed the seed peer option from start
Diffstat (limited to 'ethereum.go')
-rw-r--r--ethereum.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereum.go b/ethereum.go
index b178644cf..fa7ce9ec7 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -96,7 +96,7 @@ func (s *Ethereum) AddPeer(conn net.Conn) {
if peer != nil {
s.peers.PushBack(peer)
- peer.Start(false)
+ peer.Start()
}
}