fix >= to <

This commit is contained in:
Bryan Stitt 2023-10-06 16:35:06 -07:00
parent 8180290be7
commit 9a7777e3f9

View File

@ -1045,7 +1045,7 @@ impl Web3Rpc {
let now = Instant::now();
let hard_limit_until = self.next_available(now);
if now >= hard_limit_until {
if now < hard_limit_until {
return Ok(OpenRequestResult::RetryAt(hard_limit_until));
}