Commit 93e8cdf8 by Francisco Giordano

add explicit gas to make test pass

parent a8df0a26
......@@ -19,7 +19,10 @@ contract('RefundablePostDeliveryCrowdsale', function ([_, investor, wallet, purc
this.afterClosingTime = this.closingTime.add(time.duration.seconds(1));
this.token = await SimpleToken.new();
this.crowdsale = await RefundablePostDeliveryCrowdsaleImpl.new(
this.openingTime, this.closingTime, rate, wallet, this.token.address, goal
this.openingTime, this.closingTime, rate, wallet, this.token.address, goal,
{
gas: '0xffffff',
}
);
await this.token.transfer(this.crowdsale.address, tokenSupply);
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment