You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
In the _sendDilutedAmounts function of the ClaimContract, there is a typographical error in the variable name used for calculating the transfer amount to the Reinsert Pot. The variable is named transferForResinsertPot instead of the correct spelling transferForReinsertPot.
Recommendation:
Correct the spelling of the variable name throughout the function:
function _sendDilutedAmounts(uint256 amount) internal {
//diluted amounts are split 50/50 to DAO and ReinsertPot.
uint256 transferForReinsertPot = amount / 2; // Corrected spelling
uint256 transferForDAO = amount - transferForReinsertPot;
_transferNative(lateClaimBeneficorAddressReinsertPot,
transferForReinsertPot);
_transferNative(lateClaimBeneficorAddressDAO, transferForDAO);
}
The text was updated successfully, but these errors were encountered:
Description:
In the
_sendDilutedAmounts
function of the ClaimContract, there is a typographical error in the variable name used for calculating the transfer amount to the Reinsert Pot. The variable is namedtransferForResinsertPot
instead of the correct spellingtransferForReinsertPot
.Recommendation:
Correct the spelling of the variable name throughout the function:
The text was updated successfully, but these errors were encountered: