Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico Martín Alconada Verzini committed Nov 8, 2017
1 parent 0968b34 commit c6c11b3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 12 deletions.
7 changes: 0 additions & 7 deletions contracts/Crowdsale.sol
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions migrations/2_deploy_contracts.js
Expand Up @@ -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);
};
2 changes: 1 addition & 1 deletion 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.
Expand Down

0 comments on commit c6c11b3

Please sign in to comment.