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 9e57567cd3 - Show all commits

View File

@ -17,11 +17,11 @@ contract Token is Upgradeable, BasicToken {
decimals = 18;
}
function mintFor(address recipientAddress, uint256 amount, uint proposalId) onlyRegistryContractFor('Operator') public {
function mintFor(address contributorAccount, uint256 amount, uint proposalId) onlyRegistryContractFor('Operator') public {
totalSupply_ = totalSupply_.add(amount);
balances[recipientAddress] = balances[recipientAddress].add(amount);
balances[contributorAccount] = balances[contributorAccount].add(amount);
LogMint(recipientAddress, amount, proposalId);
LogMint(contributorAccount, amount, proposalId);
}
}