Browse Source

Distinguish between Bounty types

Bill Gleim 9 years ago
parent
commit
57d83fd022

+ 1 - 1
contracts/bounties/CrowdsaleTokenBounty.sol

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

+ 1 - 1
contracts/bounties/SimpleTokenBounty.sol

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