diff --git a/internal/tss/channels/webhook_channel.go b/internal/tss/channels/webhook_channel.go index cc13790..0e8e637 100644 --- a/internal/tss/channels/webhook_channel.go +++ b/internal/tss/channels/webhook_channel.go @@ -68,7 +68,7 @@ func (p *webhookPool) Receive(payload tss.Payload) { return } currentBackoff := p.MinWaitBtwnRetriesMS * (1 << i) - time.Sleep(jitter(time.Duration(currentBackoff)) * time.Microsecond) + time.Sleep(jitter(time.Duration(currentBackoff)) * time.Millisecond) } }