Skip to content

Commit

Permalink
Remove redundant TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
pkel committed Apr 17, 2024
1 parent 34852d0 commit 5122891
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gym/rust/src/generic/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -798,15 +798,15 @@ where
// communication depends on network assumption
if self.attacker_communicates_fast() {
for b in from_attacker {
// TODO enforce topological order
// topological order follows from increasing block indices
self.deliver(b)
}
for b in from_defender {
self.deliver(b)
}
} else {
for b in from_defender {
// TODO enforce topological order
// topological order follows from increasing block indices
self.deliver(b)
}
for b in from_attacker {
Expand Down

0 comments on commit 5122891

Please sign in to comment.