Skip to content

Instantly share code, notes, and snippets.

@Maxcutex
Last active April 8, 2019 06:20
Show Gist options
  • Save Maxcutex/8afe0bb2a4e3aab200d4b0678a3d816f to your computer and use it in GitHub Desktop.
Save Maxcutex/8afe0bb2a4e3aab200d4b0678a3d816f to your computer and use it in GitHub Desktop.
Election Project - Step Two election file
contract Election {
// Model a Candidate
struct Candidate {
uint id;
string name;
uint voteCount;
}
// Read/write Candidates
mapping(uint => Candidate) public candidates;
// Store Candidates Count
uint public candidatesCount;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment