removing trailing whitespace
This commit is contained in:
@ -9,4 +9,4 @@ contract BurnableTokenMock is BurnableToken {
|
||||
totalSupply = initialBalance;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -14,7 +14,7 @@ contract CappedCrowdsaleImpl is CappedCrowdsale {
|
||||
uint256 _cap
|
||||
)
|
||||
Crowdsale(_startTime, _endTime, _rate, _wallet)
|
||||
CappedCrowdsale(_cap)
|
||||
CappedCrowdsale(_cap)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@ contract FinalizableCrowdsaleImpl is FinalizableCrowdsale {
|
||||
address _wallet
|
||||
)
|
||||
Crowdsale(_startTime, _endTime, _rate, _wallet)
|
||||
FinalizableCrowdsale()
|
||||
FinalizableCrowdsale()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@ contract RefundableCrowdsaleImpl is RefundableCrowdsale {
|
||||
uint256 _goal
|
||||
)
|
||||
Crowdsale(_startTime, _endTime, _rate, _wallet)
|
||||
RefundableCrowdsale(_goal)
|
||||
RefundableCrowdsale(_goal)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@ -44,5 +44,5 @@ export const duration = {
|
||||
hours: function(val) { return val * this.minutes(60) },
|
||||
days: function(val) { return val * this.hours(24) },
|
||||
weeks: function(val) { return val * this.days(7) },
|
||||
years: function(val) { return val * this.days(365)}
|
||||
};
|
||||
years: function(val) { return val * this.days(365)}
|
||||
};
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
module.exports = s => {
|
||||
return new Promise((resolve, reject) => {
|
||||
web3.currentProvider.sendAsync({
|
||||
jsonrpc: '2.0',
|
||||
jsonrpc: '2.0',
|
||||
method: 'evm_increaseTime',
|
||||
params: [s], // 60 seaconds, may need to be hex, I forget
|
||||
id: new Date().getTime() // Id of the request; anything works, really
|
||||
|
||||
Reference in New Issue
Block a user