Distinguish between Bounty types

This commit is contained in:
Bill Gleim
2016-10-21 15:48:03 -07:00
parent bb3ebe13fa
commit 57d83fd022
2 changed files with 2 additions and 2 deletions

View File

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

View File

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