Skip to content

Commit

Permalink
Merge pull request #134 from rethore/master
Browse files Browse the repository at this point in the history
Replace serviceProvider by newCurator in paper.tex
  • Loading branch information
CJentzsch committed Apr 27, 2016
2 parents c0bc0b2 + 3a92a0c commit ce9cb4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paper/Paper.tex
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ \subsection{DAO} \label{DAO}
) returns (bool _success);
function splitDAO(
uint _proposalID,
address _newServiceProvider
address _newCurator
) returns (bool _success);
function newContract(address _newContract);
function changeAllowedRecipients(address _recipient, bool _allowed) external returns (bool _success);
Expand All @@ -355,12 +355,12 @@ \subsection{DAO} \label{DAO}
uint indexed proposalID,
address recipient,
uint amount,
bool newServiceProvider,
bool newCurator,
string description
);
event Voted(uint indexed proposalID, bool position, address indexed voter);
event ProposalTallied(uint indexed proposalID, bool result, uint quorum);
event NewServiceProvider(address indexed _newServiceProvider);
event NewCurator(address indexed _newCurator);
event AllowedRecipientAdded(address indexed _recipient);
}
Expand Down

0 comments on commit ce9cb4b

Please sign in to comment.