Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
6394fbc0
Commit
6394fbc0
authored
Mar 09, 2017
by
chriseth
Committed by
yann300
Mar 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Escape backticks.
parent
2e4439b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
ballot.sol
contracts/ballot.sol
+15
-15
No files found.
contracts/ballot.sol
View file @
6394fbc0
...
...
@@ -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;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment