From 20500e74613f69f937e404cbabb3982da3b72881 Mon Sep 17 00:00:00 2001 From: Determinant Date: Thu, 16 Aug 2018 23:56:59 -0400 Subject: fix vheight bug in self-voting --- include/hotstuff/liveness.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/hotstuff/liveness.h') diff --git a/include/hotstuff/liveness.h b/include/hotstuff/liveness.h index 5dfb2e0..6396fe3 100644 --- a/include/hotstuff/liveness.h +++ b/include/hotstuff/liveness.h @@ -52,8 +52,8 @@ class PMAllParents: public virtual PaceMaker { for (b = blk; b->get_height() > bqc->get_height(); b = b->get_parents()[0]); - if (b == bqc && b->get_height() > bqc_tail->get_height()) - bqc_tail = b; + if (b == bqc && blk->get_height() > bqc_tail->get_height()) + bqc_tail = blk; } reg_bqc_update(); }); -- cgit v1.2.3