Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
keep parameters order consistent
  • Loading branch information
brunobar79 committed Feb 14, 2018
commit 9e7a45e02612868aacf0872e790cff1262c83ce0
4 changes: 2 additions & 2 deletions contracts/mocks/RefundableCrowdsaleImpl.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ contract RefundableCrowdsaleImpl is RefundableCrowdsale {
uint256 _rate,
address _wallet,
uint256 _goal,
RefundVault _vault,
MintableToken _token
MintableToken _token,
RefundVault _vault
) public
Crowdsale(_startTime, _endTime, _rate, _wallet, _token)
RefundableCrowdsale(_goal, _vault)
Expand Down
4 changes: 2 additions & 2 deletions test/crowdsale/RefundableCrowdsale.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ contract('RefundableCrowdsale', function ([_, owner, wallet, investor]) {
rate,
wallet,
goal,
this.vault.address,
this.token.address,
this.vault.address,
{ from: owner }
);

Expand All @@ -56,8 +56,8 @@ contract('RefundableCrowdsale', function ([_, owner, wallet, investor]) {
rate,
wallet,
0,
this.vault.address,
this.token.address,
this.vault.address,
{ from: owner }
)
.should.be.rejectedWith(EVMRevert);
Expand Down