add author

This commit is contained in:
Ricardo Guilherme Schmidt 2019-03-25 23:15:02 -03:00
parent 57b6683c4f
commit 8851fe1cf0
No known key found for this signature in database
GPG Key ID: BFB3F5C8ED618A94
2 changed files with 6 additions and 2 deletions

View File

@ -4,7 +4,9 @@ import "../token/MiniMeToken.sol";
import "./delegation/DelegationFactory.sol";
import "./proposal/ProposalFactory.sol";
/**
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
*/
contract Democracy {
struct Topic {
@ -32,7 +34,6 @@ contract Democracy {
MiniMeToken public token;
DelegationFactory public delegationFactory;
mapping (bytes32 => Topic) topics;
mapping (address => ProposalData) proposals;

View File

@ -1,5 +1,8 @@
pragma solidity >=0.5.0 <0.6.0;
/**
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
*/
interface Delegation {
event Delegate(address who, address to);