add author
This commit is contained in:
parent
57b6683c4f
commit
8851fe1cf0
|
@ -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;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue