Distinguish between Bounty types

pull/31/head
Bill Gleim 8 years ago
parent bb3ebe13fa
commit 57d83fd022
  1. 2
      contracts/bounties/CrowdsaleTokenBounty.sol
  2. 2
      contracts/bounties/SimpleTokenBounty.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;

@ -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;

Loading…
Cancel
Save