From 3a92a0c86a2fdc25f1509febc03c3e74b9771413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Elouan=20R=C3=A9thor=C3=A9?= Date: Tue, 26 Apr 2016 20:08:06 +0200 Subject: [PATCH] Replace serviceProvider by newCurator (#1) A few places where the variables name were still `serviceProvider` were replaced by `newCurator` to mirror the modifications of the DAO.sol file. --- paper/Paper.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/paper/Paper.tex b/paper/Paper.tex index 5f814b4..eba9817 100644 --- a/paper/Paper.tex +++ b/paper/Paper.tex @@ -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); @@ -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); }