From 08da968c4216c33f5d9240e2730a28d00ace60fd Mon Sep 17 00:00:00 2001
From: Benjamin Wenger <ben@elixxir.ioo>
Date: Wed, 31 Aug 2022 08:42:15 -0700
Subject: [PATCH] fixed a wait time bug

---
 ud/channelIDTracking.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ud/channelIDTracking.go b/ud/channelIDTracking.go
index 93adbc4bc..ee1938ec3 100644
--- a/ud/channelIDTracking.go
+++ b/ud/channelIDTracking.go
@@ -253,6 +253,8 @@ func (c *clientIDTracker) registrationWorker(stopper *stoppable.Single) {
 					exponent += 1
 				}
 				waitTime = time.Second * time.Duration(backoffSeconds)
+			} else {
+				waitTime = time.Second
 			}
 		}
 
-- 
GitLab