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
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:
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: