diff --git a/contracts/CapValidator.sol b/contracts/CapValidator.sol index d7a3ef7..1d308f3 100644 --- a/contracts/CapValidator.sol +++ b/contracts/CapValidator.sol @@ -2,6 +2,12 @@ pragma solidity ^0.4.24; import "openzeppelin-solidity/contracts/math/SafeMath.sol"; +/** + * THIS CODE IS FOR DEMOSTRATION PURPOSES ONLY!!! + * + * DO NOT USE IN PRODUCTION!!! + */ + contract CapValidator { using SafeMath for uint; diff --git a/contracts/SimpleToken.sol b/contracts/SimpleToken.sol index e53adb8..3b8bef6 100644 --- a/contracts/SimpleToken.sol +++ b/contracts/SimpleToken.sol @@ -5,10 +5,9 @@ import "openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol"; import {CapValidator as iValidator} from "./CapValidator.sol"; /** - * @title SimpleToken - * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. - * Note they can later distribute these tokens as they wish using `transfer` and other - * `StandardToken` functions. + * THIS CODE IS FOR DEMOSTRATION PURPOSES ONLY!!! + * + * DO NOT USE IN PRODUCTION!!! */ contract SimpleToken is StandardToken {