This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
contract Acta { | |
mapping (uint => mapping (address => bool)) public votes; | |
mapping (address => bool) public isMember; | |
mapping (address => Member) public members; | |
mapping (bytes32 => address) public nameToAddress; | |
mapping (uint => Proposal) public proposals; | |
uint public nRequiredVotes = 1; | |
uint public nProposals = 0; | |
uint public nMembers = 0; |