Skip to content

Commit

Permalink
fix index
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvolear committed Jul 23, 2024
1 parent e32f806 commit aa22d3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .solcover.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
skipFiles: [],
skipFiles: ["mock/"],
configureYulOptimizer: true,
};
2 changes: 1 addition & 1 deletion contracts/state/ProposalsState.sol
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ contract ProposalsState is OwnableUpgradeable, TSSUpgradeable {
event ProposalCreated(uint256 indexed proposalId, address proposalSMT);
event ProposalConfigChanged(uint256 indexed proposalId);
event ProposalHidden(uint256 indexed proposalId, bool hide);
event VoteCast(uint256 indexed proposalId, uint256 userNullifier, uint256[] vote);
event VoteCast(uint256 indexed proposalId, uint256 indexed userNullifier, uint256[] vote);

modifier onlyVoting() {
_onlyVoting();
Expand Down

0 comments on commit aa22d3c

Please sign in to comment.