|
@@ -25,7 +25,10 @@ contract Crowdsale {
|
|
|
// Address where funds are collected
|
|
|
address public wallet;
|
|
|
|
|
|
- // How many token units a buyer gets per wei
|
|
|
+ // How many token units a buyer gets per wei.
|
|
|
+ // The rate is the conversion between wei and the smallest and indivisible token unit.
|
|
|
+ // So, if you are using a rate of 1 with a DetailedERC20 token with 3 decimals called TOK
|
|
|
+ // 1 wei will give you 1 unit, or 0.001 TOK.
|
|
|
uint256 public rate;
|
|
|
|
|
|
// Amount of wei raised
|