diff options
author | Maran <maran.hidskes@gmail.com> | 2014-05-02 19:35:54 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-05-02 19:35:54 +0800 |
commit | c54788338aad3897f7c0d5631984eaba5207e657 (patch) | |
tree | 129bf49ed79c8d5ad0321387c7c88585fa65e934 /ethereum.go | |
parent | ebdf339a614b9d03a0b0a0292d1ea24f854d6b3e (diff) | |
parent | 70c8656640a861d93ac40181c6c0bdd8faef856b (diff) | |
download | go-tangerine-c54788338aad3897f7c0d5631984eaba5207e657.tar.gz go-tangerine-c54788338aad3897f7c0d5631984eaba5207e657.tar.zst go-tangerine-c54788338aad3897f7c0d5631984eaba5207e657.zip |
Merge branch 'develop' into feature/rpc
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 df8e9ef7d..4181f9cd8 100644 --- a/ethereum.go +++ b/ethereum.go @@ -354,7 +354,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: |