Skip to content

Commit

Permalink
refactor(contracts): add public to Tally.isTallied
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlc03 committed Feb 20, 2024
1 parent 2d562e0 commit 0d28b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/contracts/Tally.sol
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ contract Tally is Ownable, SnarkCommon, CommonUtilities, Hasher {

/// @notice Check if all ballots are tallied
/// @return tallied whether all ballots are tallied
function isTallied() external view returns (bool tallied) {
function isTallied() public view returns (bool tallied) {
(uint8 intStateTreeDepth, , , ) = poll.treeDepths();
(uint256 numSignUps, ) = poll.numSignUpsAndMessages();

Expand Down

0 comments on commit 0d28b7a

Please sign in to comment.