Commit 57d83fd0 by Bill Gleim

Distinguish between Bounty types

parent bb3ebe13
...@@ -8,7 +8,7 @@ import './token/CrowdsaleToken.sol'; ...@@ -8,7 +8,7 @@ import './token/CrowdsaleToken.sol';
* to be lower than its totalSupply, which would mean that it doesn't * to be lower than its totalSupply, which would mean that it doesn't
* have sufficient ether for everyone to withdraw. * have sufficient ether for everyone to withdraw.
*/ */
contract Bounty is PullPayment { contract CrowdsaleTokenBounty is PullPayment {
bool public claimed; bool public claimed;
mapping(address => address) public researchers; mapping(address => address) public researchers;
......
...@@ -8,7 +8,7 @@ import './token/SimpleToken.sol'; ...@@ -8,7 +8,7 @@ import './token/SimpleToken.sol';
* to be lower than its totalSupply, which would mean that it doesn't * to be lower than its totalSupply, which would mean that it doesn't
* have sufficient ether for everyone to withdraw. * have sufficient ether for everyone to withdraw.
*/ */
contract Bounty is PullPayment { contract SimpleTokenBounty is PullPayment {
bool public claimed; bool public claimed;
mapping(address => address) public researchers; mapping(address => address) public researchers;
......
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