Retransmit blobs from leader from window (#975)

- Some nodes don't have leader information while leader is broadcasting
  blobs to those nodes. Such blobs are not retransmitted. This change
  rertansmits the blobs once the leader's identity is know.
This commit is contained in:
Pankaj Garg
2018-08-14 21:51:37 -07:00
committed by GitHub
parent dccae18b53
commit 982afa87a6
3 changed files with 234 additions and 29 deletions

View File

@@ -713,7 +713,8 @@ mod test {
let mut window = vec![
WindowSlot {
data: None,
coding: None
coding: None,
leader_unknown: false,
};
WINDOW_SIZE
];