https://github.com/code-423n4/2024-07-traitforge/blob/279b2887e3d38bc219a05d332cbcb0655b2dc644/contracts/EntropyGenerator/EntropyGenerator.sol#L73-L75
The mod operation in the code below is unnecessary and adds unnecessary complexity. This is because the modulus value 10 ** 78 is larger than the maximum value of a uint256 (2 ** 256). As a result, the modulus operation has no effect, leading to ambiguity and potential misunderstanding of the codes intent.
Remove the unnecessary modulus operation to simplify the code and avoid confusion.
