Skip to content

Commit

Permalink
Fix token address
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Strakh committed Apr 24, 2018
1 parent 2be5d6a commit 8b89e32
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
7 changes: 3 additions & 4 deletions contracts/MigrationConfigurator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ import './ITO.sol';
/**
* How to migrate:
* 1. Deploy
* 2. setToken
* 3. call deploy
* 4. toket.setSaleAgent(preITO)
* 2. call deploy
* 3. toket.setSaleAgent(preITO)
*/
contract MigrationConfigurator is Ownable {

Token public token;
Token public token = Token(0x921a5DcE3dfED5CCCfbB2E593F2978533bc66110);

PreITO public preITO;

Expand Down
7 changes: 3 additions & 4 deletions deploy/MigrationConfigurator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -909,13 +909,12 @@ contract Token is MintableToken {
/**
* How to migrate:
* 1. Deploy
* 2. setToken
* 3. call deploy
* 4. toket.setSaleAgent(preITO)
* 2. call deploy
* 3. toket.setSaleAgent(preITO)
*/
contract MigrationConfigurator is Ownable {

Token public token;
Token public token = Token(0x921a5DcE3dfED5CCCfbB2E593F2978533bc66110);

PreITO public preITO;

Expand Down

0 comments on commit 8b89e32

Please sign in to comment.