set destination address when for ledger window repair responses

This commit is contained in:
Rob Walker
2018-08-07 23:22:45 -07:00
parent a200cedb4b
commit c64e2acf8b
3 changed files with 12 additions and 2 deletions

View File

@@ -399,7 +399,7 @@ impl Block for [Entry] {
fn to_blobs(&self, blob_recycler: &packet::BlobRecycler, q: &mut VecDeque<SharedBlob>) {
for entry in self {
let blob = entry.to_blob(blob_recycler, None, None);
let blob = entry.to_blob(blob_recycler, None, None, None);
q.push_back(blob);
}
}