Browse Source

rpc: remove restriction on DialSeeds

pull/333/head
Ethan Buchman 8 years ago
parent
commit
12c6594c9b
1 changed files with 1 additions and 7 deletions
  1. +1
    -7
      rpc/core/net.go

+ 1
- 7
rpc/core/net.go View File

@ -1,8 +1,6 @@
package core
import (
"fmt"
ctypes "github.com/tendermint/tendermint/rpc/core/types"
)
@ -31,12 +29,8 @@ func NetInfo() (*ctypes.ResultNetInfo, error) {
//-----------------------------------------------------------------------------
// Dial given list of seeds if we have no outbound peers
// Dial given list of seeds
func DialSeeds(seeds []string) (*ctypes.ResultDialSeeds, error) {
outbound, _, _ := p2pSwitch.NumPeers()
if outbound != 0 {
return nil, fmt.Errorf("Already have some outbound peers")
}
// starts go routines to dial each seed after random delays
p2pSwitch.DialSeeds(seeds)
return &ctypes.ResultDialSeeds{}, nil


Loading…
Cancel
Save