Better function naming to update contributor profiles

This commit is contained in:
bumi 2019-04-06 15:42:16 +02:00
parent 14d7fbd75e
commit f717968402
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ contract Contributor is AragonApp {
ContributorAccountUpdated(id, oldAccount, newAccount);
}
function updateContributorIpfsHash(uint32 id, bytes32 hashDigest, uint8 hashFunction, uint8 hashSize) public isInitialized auth(MANAGE_CONTRIBUTORS_ROLE) {
function updateContributorProfileHash(uint32 id, bytes32 hashDigest, uint8 hashFunction, uint8 hashSize) public isInitialized auth(MANAGE_CONTRIBUTORS_ROLE) {
Contributor storage c = contributors[id];
bytes32 oldHashDigest = c.hashDigest;
c.hashDigest = hashDigest;

File diff suppressed because one or more lines are too long