rpc: remove restriction on DialSeeds

This commit is contained in:
Ethan Buchman 2016-12-09 00:26:07 -05:00
parent 8b80f8ee05
commit 12c6594c9b
1 changed files with 1 additions and 7 deletions

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