remove unecessary whitespace

This commit is contained in:
Francisco Giordano
2017-06-30 17:54:07 -03:00
parent 50a903a62d
commit 657c56c650
2 changed files with 2 additions and 6 deletions

View File

@ -12,9 +12,7 @@ contract CappedCrowdsale is Crowdsale {
uint256 public cap;
function CappedCrowdsale(
uint256 _cap
) {
function CappedCrowdsale(uint256 _cap) {
cap = _cap;
}

View File

@ -21,9 +21,7 @@ contract RefundableCrowdsale is FinalizableCrowdsale {
// refund vault used to hold funds while crowdsale is running
RefundVault public vault;
function RefundableCrowdsale(
uint256 _goal
) {
function RefundableCrowdsale(uint256 _goal) {
vault = new RefundVault(wallet);
goal = _goal;
}