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
{{ message }}
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
In TokenCreator.sol we have
if ((...) || (totalCollected + msg.value > maximumFunding)) {
throw;
}
This is a security precaution to avoid putting a send function in the contract. eventually this will be changed so that the amount above the MaximumFunding will be sent back to the user and the rest will be kept... but for now, Security is more important than that functionality
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In TokenCreator.sol we have
if ((...) || (totalCollected + msg.value > maximumFunding)) {
throw;
}
This is a security precaution to avoid putting a send function in the contract. eventually this will be changed so that the amount above the MaximumFunding will be sent back to the user and the rest will be kept... but for now, Security is more important than that functionality
The text was updated successfully, but these errors were encountered: