This commit is contained in:
Jorge Izquierdo 2017-04-17 10:20:11 +02:00
parent 9a58d30866
commit e7fed71ad8
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ Price increases by the same delta in every stage change
if (_communityMultisig == 0) throw;
if (_initialPrice <= _finalPrice) throw;
if (_priceStages < 1) throw;
if (_priceStages > _initialPrice - finalPrice) throw;
if (_priceStages > _initialPrice - _finalPrice) throw;
// Save constructor arguments as global variables
initialBlock = _initialBlock;