Skip to content

Commit

Permalink
DAO: rm unused mapPID_finalised
Browse files Browse the repository at this point in the history
  • Loading branch information
0xBrian committed May 9, 2021
1 parent c9c066a commit 6f961e6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions contracts/DAO.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ contract DAO {
mapping(uint256 => uint256) public mapPID_votes;
mapping(uint256 => uint256) public mapPID_timeStart;
mapping(uint256 => bool) public mapPID_finalising;
mapping(uint256 => bool) public mapPID_finalised;
mapping(uint256 => mapping(address => uint256)) public mapPIDMember_votes;

event NewProposal(address indexed member, uint256 indexed proposalID, string proposalType);
Expand Down Expand Up @@ -183,7 +182,6 @@ contract DAO {
_typeStr
);
mapPID_votes[_proposalID] = 0;
mapPID_finalised[_proposalID] = true;
mapPID_finalising[_proposalID] = false;
}

Expand Down

0 comments on commit 6f961e6

Please sign in to comment.