Commit 657c56c6 by Francisco Giordano

remove unecessary whitespace

parent 50a903a6
......@@ -12,9 +12,7 @@ contract CappedCrowdsale is Crowdsale {
uint256 public cap;
function CappedCrowdsale(
uint256 _cap
) {
function CappedCrowdsale(uint256 _cap) {
cap = _cap;
}
......
......@@ -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;
}
......
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