We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ExternalLocking4Reputation.initialize
Locking4Reputation._initialize
require(_lockingEndTime > _lockingStartTime,"_lockingEndTime should be greater than _lockingStartTime");
FixedReputationAllocation.BeneficiaryAddressAdded._beneficiary
Auction4Reputation.Bid._bidder
FixedReputationAllocation.enabled
numberOfBeneficiaries
beneficiaryReward = uint256(int216(reputationReward).div(int256(numberOfBeneficiaries)).fromReal());
Should we do a require with a message?
require
The text was updated successfully, but these errors were encountered:
@orenyodfat
Sorry, something went wrong.
No branches or pull requests
ExternalLocking4Reputation.initialize
is redundant with what already exists inLocking4Reputation._initialize
:FixedReputationAllocation.BeneficiaryAddressAdded._beneficiary
Auction4Reputation.Bid._bidder
FixedReputationAllocation.enabled
will crash whennumberOfBeneficiaries
is zero:Should we do a
require
with a message?The text was updated successfully, but these errors were encountered: