From 9006e77296ed1b338e3ddddc71b4753a4bd3db14 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 3 May 2016 16:10:42 +0200 Subject: [PATCH] remove unused queue --- bigchaindb/core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bigchaindb/core.py b/bigchaindb/core.py index 9e01bce7..c3a006a3 100644 --- a/bigchaindb/core.py +++ b/bigchaindb/core.py @@ -506,9 +506,9 @@ class Bigchain(object): # The use of ceiling and floor is to account for the case of an # even number of voters where half the voters have voted 'invalid' - # and half 'valid'. In this case, the block should marked invalid - # to avoid a hung election. In the case of an odd number of voters - # this is not relevant, since one side must be a majority. + # and half 'valid'. In this case, the block should be marked invalid + # to avoid a tie. In the case of an odd number of voters this is not + # relevant, since one side must be a majority. if n_invalid_votes >= math.ceil(n_voters / 2): return 'invalid' elif n_valid_votes > math.floor(n_voters / 2):