mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-02-18 09:27:05 +00:00
Remove an overly agressive assertion (#4759)
This commit is contained in:
parent
813fddee8c
commit
b8f2022668
@ -1120,7 +1120,8 @@ proc processResponse[ELResponseType](
|
||||
requests: openArray[Future[ELResponseType]],
|
||||
idx: int) =
|
||||
|
||||
doAssert requests[idx].completed
|
||||
if not requests[idx].completed:
|
||||
return
|
||||
|
||||
let status = try: requests[idx].read.status
|
||||
except CatchableError: raiseAssert "checked above"
|
||||
@ -1166,7 +1167,7 @@ proc sendNewPayload*(m: ELManager,
|
||||
for idx, req in requests:
|
||||
if not req.finished:
|
||||
stillPending.add req
|
||||
elif not req.failed:
|
||||
elif req.completed:
|
||||
responseProcessor.processResponse(m.elConnections, requests, idx)
|
||||
|
||||
if responseProcessor.disagreementAlreadyDetected:
|
||||
@ -1273,7 +1274,7 @@ proc forkchoiceUpdated*(m: ELManager,
|
||||
for idx, req in requests:
|
||||
if not req.finished:
|
||||
stillPending.add req
|
||||
elif not req.failed:
|
||||
elif req.completed:
|
||||
responseProcessor.processResponse(m.elConnections, requests, idx)
|
||||
|
||||
if responseProcessor.disagreementAlreadyDetected:
|
||||
|
Loading…
x
Reference in New Issue
Block a user