Removed trailing whitespace

This commit is contained in:
Denton Liu
2016-05-18 11:35:32 -04:00
parent 4b9e9cad56
commit d4ad3231a2
6 changed files with 37 additions and 37 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ a lot of Solidity's features. It implements a voting
contract. Of course, the main problems of electronic
voting is how to assign voting rights to the correct
persons and how to prevent manipulation. We will not
solve all problems here, but at least we will show
solve all problems here, but at least we will show
how delegated voting can be done so that vote counting
is **automatic and completely transparent** at the
same time.
@@ -125,7 +125,7 @@ of votes.
Voter delegate = voters[to];
if (delegate.voted) {
// If the delegate already voted,
// directly add to the number of votes
// directly add to the number of votes
proposals[delegate.vote].voteCount += sender.weight;
}
else {