Commit 9559b532 authored by obscuren's avatar obscuren

Added Past peers option

parent eb32fe20
...@@ -399,9 +399,7 @@ func (s *Ethereum) Start(seed bool) { ...@@ -399,9 +399,7 @@ func (s *Ethereum) Start(seed bool) {
} }
func (s *Ethereum) Seed() { func (s *Ethereum) Seed() {
var ips []string ips := PastPeers()
data, _ := ethutil.ReadAllFile(path.Join(ethutil.Config.ExecPath, "known_peers.json"))
json.Unmarshal([]byte(data), &ips)
if len(ips) > 0 { if len(ips) > 0 {
for _, ip := range ips { for _, ip := range ips {
ethlogger.Infoln("Connecting to previous peer ", ip) ethlogger.Infoln("Connecting to previous peer ", ip)
...@@ -473,8 +471,11 @@ func (s *Ethereum) Stop() { ...@@ -473,8 +471,11 @@ func (s *Ethereum) Stop() {
eachPeer(s.peers, func(p *Peer, e *list.Element) { eachPeer(s.peers, func(p *Peer, e *list.Element) {
ips = append(ips, p.conn.RemoteAddr().String()) ips = append(ips, p.conn.RemoteAddr().String())
}) })
d, _ := json.MarshalIndent(ips, "", " ")
ethutil.WriteFile(path.Join(ethutil.Config.ExecPath, "known_peers.json"), d) if len(ips) > 0 {
d, _ := json.MarshalIndent(ips, "", " ")
ethutil.WriteFile(path.Join(ethutil.Config.ExecPath, "known_peers.json"), d)
}
eachPeer(s.peers, func(p *Peer, e *list.Element) { eachPeer(s.peers, func(p *Peer, e *list.Element) {
p.Stop() p.Stop()
...@@ -620,3 +621,11 @@ func bootstrapDb(db ethutil.Database) { ...@@ -620,3 +621,11 @@ func bootstrapDb(db ethutil.Database) {
db.Put([]byte("ProtocolVersion"), ethutil.NewValue(ProtocolVersion).Bytes()) db.Put([]byte("ProtocolVersion"), ethutil.NewValue(ProtocolVersion).Bytes())
} }
} }
func PastPeers() []string {
var ips []string
data, _ := ethutil.ReadAllFile(path.Join(ethutil.Config.ExecPath, "known_peers.json"))
json.Unmarshal([]byte(data), &ips)
return ips
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment