|
|
|
@ -22,13 +22,13 @@ contract Ballot { |
|
|
|
|
address public chairperson; |
|
|
|
|
|
|
|
|
|
// This declares a state variable that |
|
|
|
|
// stores a `Voter` struct for each possible address. |
|
|
|
|
// stores a \`Voter\` struct for each possible address. |
|
|
|
|
mapping(address => Voter) public voters; |
|
|
|
|
|
|
|
|
|
// A dynamically-sized array of `Proposal` structs. |
|
|
|
|
// A dynamically-sized array of \`Proposal\` structs. |
|
|
|
|
Proposal[] public proposals; |
|
|
|
|
|
|
|
|
|
/// Create a new ballot to choose one of `proposalNames`. |
|
|
|
|
/// Create a new ballot to choose one of \`proposalNames\`. |
|
|
|
|
function Ballot(bytes32[] proposalNames) { |
|
|
|
|
chairperson = msg.sender; |
|
|
|
|
voters[chairperson].weight = 1; |
|
|
|
@ -37,9 +37,9 @@ contract Ballot { |
|
|
|
|
// create a new proposal object and add it |
|
|
|
|
// to the end of the array. |
|
|
|
|
for (uint i = 0; i < proposalNames.length; i++) { |
|
|
|
|
// `Proposal({...})` creates a temporary |
|
|
|
|
// Proposal object and `proposals.push(...)` |
|
|
|
|
// appends it to the end of `proposals`. |
|
|
|
|
// \`Proposal({...})\` creates a temporary |
|
|
|
|
// Proposal object and \`proposals.push(...)\` |
|
|
|
|
// appends it to the end of \`proposals\`. |
|
|
|
|
proposals.push(Proposal({ |
|
|
|
|
name: proposalNames[i], |
|
|
|
|
voteCount: 0 |
|
|
|
@ -47,11 +47,11 @@ contract Ballot { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Give `voter` the right to vote on this ballot. |
|
|
|
|
// May only be called by `chairperson`. |
|
|
|
|
// Give \`voter\` the right to vote on this ballot. |
|
|
|
|
// May only be called by \`chairperson\`. |
|
|
|
|
function giveRightToVote(address voter) { |
|
|
|
|
if (msg.sender != chairperson || voters[voter].voted) { |
|
|
|
|
// `throw` terminates and reverts all changes to |
|
|
|
|
// \`throw\` terminates and reverts all changes to |
|
|
|
|
// the state and to Ether balances. It is often |
|
|
|
|
// a good idea to use this if functions are |
|
|
|
|
// called incorrectly. But watch out, this |
|
|
|
@ -61,7 +61,7 @@ contract Ballot { |
|
|
|
|
voters[voter].weight = 1; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Delegate your vote to the voter `to`. |
|
|
|
|
/// Delegate your vote to the voter \`to\`. |
|
|
|
|
function delegate(address to) { |
|
|
|
|
// assigns reference |
|
|
|
|
Voter sender = voters[msg.sender]; |
|
|
|
@ -69,7 +69,7 @@ contract Ballot { |
|
|
|
|
throw; |
|
|
|
|
|
|
|
|
|
// Forward the delegation as long as |
|
|
|
|
// `to` also delegated. |
|
|
|
|
// \`to\` also delegated. |
|
|
|
|
// In general, such loops are very dangerous, |
|
|
|
|
// because if they run too long, they might |
|
|
|
|
// need more gas than is available in a block. |
|
|
|
@ -88,8 +88,8 @@ contract Ballot { |
|
|
|
|
throw; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Since `sender` is a reference, this |
|
|
|
|
// modifies `voters[msg.sender].voted` |
|
|
|
|
// Since \`sender\` is a reference, this |
|
|
|
|
// modifies \`voters[msg.sender].voted\` |
|
|
|
|
sender.voted = true; |
|
|
|
|
sender.delegate = to; |
|
|
|
|
Voter delegate = voters[to]; |
|
|
|
@ -105,7 +105,7 @@ contract Ballot { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Give your vote (including votes delegated to you) |
|
|
|
|
/// to proposal `proposals[proposal].name`. |
|
|
|
|
/// to proposal \`proposals[proposal].name\`. |
|
|
|
|
function vote(uint proposal) { |
|
|
|
|
Voter sender = voters[msg.sender]; |
|
|
|
|
if (sender.voted) |
|
|
|
@ -113,7 +113,7 @@ contract Ballot { |
|
|
|
|
sender.voted = true; |
|
|
|
|
sender.vote = proposal; |
|
|
|
|
|
|
|
|
|
// If `proposal` is out of the range of the array, |
|
|
|
|
// If \`proposal\` is out of the range of the array, |
|
|
|
|
// this will throw automatically and revert all |
|
|
|
|
// changes. |
|
|
|
|
proposals[proposal].voteCount += sender.weight; |
|
|
|
|