Skip to content

Instantly share code, notes, and snippets.

@mpvolt
mpvolt / ballot.sol
Created May 9, 2019 21:10
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.6.0-nightly.2019.3.11+commit.4704ef84.js&optimize=false&gist=
pragma solidity >=0.4.22 <0.6.0;
contract Ballot {
struct Voter {
uint weight;
bool voted;
uint8 vote;
address delegate;
}
struct Proposal {