Skip to content

Commit

Permalink
Update renoun.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon-Becker committed Jun 1, 2022
1 parent be831c7 commit 9fb9cee
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/contracts/renoun.sol
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ contract Renoun is ERC721 {
string _commitHash;
string _repositoryOwner;
string _repositoryName;
uint256 _repositoryStars;
uint256 _repositoryContributors;
}

mapping(uint256 => address) private _ownership;
Expand Down Expand Up @@ -154,9 +152,7 @@ contract Renoun is ERC721 {
_pullRequestCreatorUsername,
_commitHash,
repositoryOwner,
repositoryName,
repositoryStars,
repositoryContributors
repositoryName
);
totalSupply++;
_ownership[totalSupply] = _to;
Expand Down Expand Up @@ -286,8 +282,8 @@ contract Renoun is ERC721 {
_contribution._commitHash,
_contribution._repositoryOwner,
_contribution._repositoryName,
_contribution._repositoryStars,
_contribution._repositoryContributors
repositoryStars,
repositoryContributors
);
}
}
Expand Down

0 comments on commit 9fb9cee

Please sign in to comment.