We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c49d2eb commit f329e7dCopy full SHA for f329e7d
packages/contracts/contracts/maci/Tally.sol
@@ -16,7 +16,8 @@ import { IRecipientRegistry } from "../interfaces/IRecipientRegistry.sol";
16
contract Tally is TallyBase, IPayoutStrategy {
17
using SafeERC20 for IERC20;
18
19
- /// @notice The max voice credits (MACI allows 2 ** 32 voice credits max)
+ /// @notice The max voice credits
20
+ /// @dev MACI allows 2 ** 32 voice credits max, but we only need 10 ** 9 here
21
uint256 private constant MAX_VOICE_CREDITS = 10 ** 9;
22
23
/// @notice The alpha precision (needed for allocated amount calculation)
0 commit comments