From d1e629c4b9fb070bf71fd18395b537cc52309010 Mon Sep 17 00:00:00 2001 From: masonicGIT Date: Mon, 10 Jul 2017 17:17:23 -0700 Subject: [PATCH] Fix horrendous spacing issue --- contracts/ProposalVote.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/ProposalVote.sol b/contracts/ProposalVote.sol index bcbb664..69d926c 100644 --- a/contracts/ProposalVote.sol +++ b/contracts/ProposalVote.sol @@ -90,7 +90,7 @@ contract ProposalVote { } // Ensure a quorum was reached by having a minimum number of votes over the threshold - if( yesVotes + noVotes < threshold){ + if( yesVotes + noVotes < threshold ){ // Not enough votes were cast to allow this to be finalized to "true" return false;