Rename ipfsHash to hashDigest in Contributor #80

Merged
bumi merged 2 commits from chore/rename-ipfshash-1 into master 2019-04-06 13:55:20 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit f717968402 - Show all commits

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