This file contains hidden or 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
pragma solidity ^0.4.13; | |
// Trutheum Contract v0.01 | |
contract Trutheum { | |
// Contributer is any person who transfers funds | |
// to this contract. They have a right to vote for | |
// the truth that they believe answers the RFT. | |
struct Contributor { | |
uint weight; | |
bool voted; |