Check for valid tvu, not tpu in broadcast (#1836)

This commit is contained in:
carllin 2018-11-15 23:30:22 -08:00 committed by GitHub
parent c973de1d76
commit 03d206a7ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ impl BroadcastStage {
let me = cluster_info.read().unwrap().my_data().clone();
let mut tick_height_ = tick_height;
loop {
let broadcast_table = cluster_info.read().unwrap().tpu_peers();
let broadcast_table = cluster_info.read().unwrap().tvu_peers();
let leader_id = cluster_info.read().unwrap().leader_id();
if let Err(e) = broadcast(
max_tick_height,