-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
enkogu
committed
Oct 8, 2018
1 parent
17c27d7
commit 450093f
Showing
6 changed files
with
136 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pragma solidity ^0.4.24; | ||
import "./WeiFund.sol"; | ||
|
||
|
||
contract WeiFundWithPeriod is WeiFund { | ||
constructor(uint _neededWei, uint _periodHours) public WeiFund(_neededWei, true, false, _periodHours) { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pragma solidity ^0.4.24; | ||
import "./WeiFund.sol"; | ||
|
||
|
||
contract WeiFundWithPeriodSliding is WeiFund { | ||
constructor(uint _neededWei, uint _periodHours) public WeiFund(_neededWei, true, true, _periodHours) { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pragma solidity ^0.4.24; | ||
import "./WeiFund.sol"; | ||
|
||
|
||
contract WeiInfiniteFund is WeiFund { | ||
constructor() public WeiFund(0, false, false, 0) { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pragma solidity ^0.4.24; | ||
import "./WeiFund.sol"; | ||
|
||
|
||
contract WeiOneTimeFund is WeiFund { | ||
constructor(uint _neededWei) public WeiFund(_neededWei, false, false, 0) { | ||
} | ||
} |
Oops, something went wrong.