Replace Blob Ids with Forward property (#2734)

* Replace Blob Id with Blob forwarding

* Update simulation to properly propagate blobs
This commit is contained in:
Sagar Dhawan
2019-02-12 10:56:48 -08:00
committed by GitHub
parent 1173cf7ed4
commit 8b39eb5e4e
12 changed files with 144 additions and 137 deletions

View File

@ -794,16 +794,11 @@ mod tests {
let tvu_address = &validator_info.tvu;
let msgs = make_consecutive_blobs(
&leader_id,
blobs_to_send,
ledger_initial_len,
last_id,
&tvu_address,
)
.into_iter()
.rev()
.collect();
let msgs =
make_consecutive_blobs(blobs_to_send, ledger_initial_len, last_id, &tvu_address)
.into_iter()
.rev()
.collect();
s_responder.send(msgs).expect("send");
t_responder
};