Skip to content

Commit f197566

Browse files
committed
whitespace
1 parent 488361b commit f197566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: contracts/SimpleVoter.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ pragma solidity >=0.4.22 <0.6.0;
22

33
contract SimpleVoter {
44

5-
mapping( address => bool ) hasVoted;
5+
mapping(address => bool) hasVoted;
66
uint256 public yeses;
77
uint256 public nos;
88

99
function castVote( bool _vote ) public {
1010

11-
require( hasVoted[msg.sender] != true, "Already voted!" );
11+
require(hasVoted[msg.sender] != true, "Already voted!");
1212

1313
if (_vote) {
1414
yeses++;

0 commit comments

Comments
 (0)