This commit is contained in:
Anatoly Yakovenko
2018-07-02 15:30:19 -07:00
committed by Greg Fitzgerald
parent b8fe5ae076
commit 6feed5fd56

View File

@ -166,7 +166,7 @@ impl FullNode {
thread_hdls.extend(rpu.thread_hdls); thread_hdls.extend(rpu.thread_hdls);
let blob_recycler = BlobRecycler::default(); let blob_recycler = BlobRecycler::default();
let tpu = Tpu::new( let (tpu, blob_receiver) = Tpu::new(
bank.clone(), bank.clone(),
tick_duration, tick_duration,
transactions_socket, transactions_socket,
@ -195,7 +195,7 @@ impl FullNode {
window, window,
entry_height, entry_height,
blob_recycler.clone(), blob_recycler.clone(),
tpu.blob_receiver, blob_receiver,
); );
thread_hdls.extend(vec![t_broadcast]); thread_hdls.extend(vec![t_broadcast]);