style: format code with gofmt

This commit is contained in:
Krypto Kajun
2025-11-08 10:37:52 -06:00
parent 8cba462024
commit ae4abc5b5c
32 changed files with 9207 additions and 5843 deletions

View File

@@ -54,11 +54,11 @@ func (r *RateLimitedRPC) CallWithRetry(ctx context.Context, method string, args
case <-ctx.Done():
return nil, pkgerrors.WrapContextError(ctx.Err(), "RateLimitedRPC.CallWithRetry.rateLimitBackoff",
map[string]interface{}{
"method": method,
"attempt": i + 1,
"maxRetries": r.retryCount,
"backoffTime": backoffTime.String(),
"lastError": err.Error(),
"method": method,
"attempt": i + 1,
"maxRetries": r.retryCount,
"backoffTime": backoffTime.String(),
"lastError": err.Error(),
})
case <-time.After(backoffTime):
// Continue to next retry