This commit is contained in:
Anatoly Yakovenko
2018-05-12 19:00:22 -07:00
parent a604dcb4c4
commit 2d635386af
10 changed files with 587 additions and 165 deletions

View File

@@ -62,9 +62,10 @@ impl<'a> EntryWriter<'a> {
) -> Result<()> {
let mut q = VecDeque::new();
let list = self.write_entries(writer, entry_receiver)?;
trace!("New blobs? {}", list.len());
info!("New blobs? {}", list.len());
ledger::process_entry_list_into_blobs(&list, blob_recycler, &mut q);
if !q.is_empty() {
info!("broadcasting {}", q.len());
broadcast.send(q)?;
}
Ok(())