Skip to content

Instantly share code, notes, and snippets.

View WangShayne's full-sized avatar

Shayne Wang WangShayne

View GitHub Profile
ebdb0a304e8761b402d6d70b2240d890e96ae526
@WangShayne
WangShayne / ballot.sol
Created July 9, 2019 06:03
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=undefined&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 {