Skip to content

Commit

Permalink
add warning at top of contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
iamchrissmith committed Oct 5, 2018
1 parent aa29bfd commit 74aeb57
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 6 additions & 0 deletions contracts/CapValidator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
7 changes: 3 additions & 4 deletions contracts/SimpleToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down

0 comments on commit 74aeb57

Please sign in to comment.