More consistent contract parameter naming #24

Merged
bumi merged 9 commits from refactor/naming-conventions into master 2018-04-15 18:24:12 +00:00
Showing only changes of commit b85117835d - Show all commits

View File

@@ -49,7 +49,7 @@ contract Contributors is Upgradeable {
return count;
}
function updateContributorAddress(uint id, address oldAccount, address newAccount) public onlyCoreOrOperator {
function updateContributorAccount(uint id, address oldAccount, address newAccount) public onlyCoreOrOperator {
contributorIds[oldAccount] = 0;
contributorIds[newAccount] = id;
contributors[id].account = newAccount;