We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9904d09 commit 75fbb9dCopy full SHA for 75fbb9d
modules/messages/src/outbound_lane.rs
@@ -196,9 +196,6 @@ fn ensure_unrewarded_relayers_are_correct<RelayerId>(
196
// entry can't confirm messages larger than `inbound_lane_data.latest_received_nonce()`
197
// (guaranteed by the `InboundLane::receive_message()`)
198
if entry.messages.end > latest_received_nonce {
199
- // technically this will be detected in the next loop iteration as
200
- // `InvalidNumberOfDispatchResults` but to guarantee safety of loop operations below
201
- // this is detected now
202
return Err(ReceivalConfirmationResult::FailedToConfirmFutureMessages)
203
}
204
0 commit comments