Skip to content

Commit

Permalink
change comment
Browse files Browse the repository at this point in the history
  • Loading branch information
smonero committed May 20, 2024
1 parent 171a767 commit 4b5210a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ func (c *ClientCreatorPool) Initialize(configs []ClientCreatorPoolConfig, scope
return errors.Wrap(err, "client creator")
}
c.idToClientCreator[config.id] = clientCreator
// just needs to be non-zero, true value will be updated within 60 seconds by the cron that checks the rate limit
// For the rate limit remaining, initially needs to be non-zero, the actual rate limit number value will be
// updated within 60 seconds by the cron that checks the rate limit
c.idToRateLimitRemaning[config.id] = 100
}

Expand Down

0 comments on commit 4b5210a

Please sign in to comment.