diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-02 04:14:20 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-02 04:14:20 +0800 |
commit | 91aa189ef31adff7f4a084cae770aaa7c01f11e5 (patch) | |
tree | 595c5317179ae861146ed695591175b3c56674ce /ethereum.go | |
parent | e6a68f0c3ab4987fa5e0e35cac765d40ff305aea (diff) | |
download | dexon-91aa189ef31adff7f4a084cae770aaa7c01f11e5.tar.gz dexon-91aa189ef31adff7f4a084cae770aaa7c01f11e5.tar.zst dexon-91aa189ef31adff7f4a084cae770aaa7c01f11e5.zip |
Fixed Upnp bug
Diffstat (limited to 'ethereum.go')
-rw-r--r-- | ethereum.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereum.go b/ethereum.go index c906a6954..b9174eaf8 100644 --- a/ethereum.go +++ b/ethereum.go @@ -350,7 +350,7 @@ func (s *Ethereum) WaitForShutdown() { func (s *Ethereum) upnpUpdateThread() { // Go off immediately to prevent code duplication, thereafter we renew // lease every 15 minutes. - timer := time.NewTimer(0 * time.Second) + timer := time.NewTimer(5 * time.Minute) lport, _ := strconv.ParseInt(s.Port, 10, 16) first := true out: |