bump initial autodiscovery delay to 15s

This commit is contained in:
vyzo 2018-05-07 12:25:35 +03:00
parent 1c0355d3e8
commit da3f7b5527
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ func (as *AutoNATState) PublicAddr() (ma.Multiaddr, error) {
func (as *AutoNATState) background() {
// wait a bit for the node to come online and establish some connections
// before starting autodetection
time.Sleep(10 * time.Second)
time.Sleep(15 * time.Second)
for {
as.autodetect()
select {