diff --git a/contracts/Crowdsale.sol b/contracts/Crowdsale.sol index e9f7a05..2228e2d 100644 --- a/contracts/Crowdsale.sol +++ b/contracts/Crowdsale.sol @@ -111,13 +111,6 @@ contract Crowdsale is Pausable { buyTokens(msg.sender); } - /* - * @dev Creates the token to be sold. Override this method to have crowdsale of a specific mintable token. - */ - function createTokenContract() internal returns(QiibeeToken) { - return new QiibeeToken(); //TODO: get token already deployed? - } - /** * @dev Must be overridden to add buy token minting logic. The overriding function * should call super.finalization() to ensure the chain of buy tokens is diff --git a/migrations/2_deploy_contracts.js b/migrations/2_deploy_contracts.js index 3c150ed..5245dd5 100644 --- a/migrations/2_deploy_contracts.js +++ b/migrations/2_deploy_contracts.js @@ -28,10 +28,6 @@ module.exports = function(deployer) { console.log('Using testrpc network. Wallet address: ', wallet); } - // const wallet = "0x7Ba631Ce4B83a05fcee8154B0Cf6765F1Fc417d4" // the address that will hold the fund. Recommended to use a multisig one for security. - // deployer.deploy(QiibeeToken); // deployer.deploy(QiibeeCrowdsale, startTime, endTime, rate, goal, cap, minInvest, maxInvest, maxGasPrice, maxCallFrequency, wallet); - // deployer.deploy(QiibeePresale, presalecap, wallet); - // deployer.deploy(QiibeePresale, startTime, endTime, rate, goal, presalecap, wallet); // deployer.deploy(QiibeePresale, startTime, endTime, goal, presalecap, maxGasPrice, maxCallFrequency, wallet); }; diff --git a/truffle.js b/truffle.js index b086baa..ec5ee44 100644 --- a/truffle.js +++ b/truffle.js @@ -1,5 +1,5 @@ var HDWalletProvider = require("truffle-hdwallet-provider"); -var mnemonic = "exhibit salmon capital index grunt debris lunar burst initial broccoli salute involve"; +var mnemonic = "[ SEED PHRASE ]"; if (!process.env.SOLIDITY_COVERAGE){ // This is a stub to use in case you begin validating on a testnet using HDWallet.