From 57d83fd02222cba62164204842138698f8af4813 Mon Sep 17 00:00:00 2001 From: Bill Gleim Date: Fri, 21 Oct 2016 15:48:03 -0700 Subject: [PATCH] Distinguish between Bounty types --- contracts/bounties/CrowdsaleTokenBounty.sol | 2 +- contracts/bounties/SimpleTokenBounty.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/bounties/CrowdsaleTokenBounty.sol b/contracts/bounties/CrowdsaleTokenBounty.sol index eca5f4092..3f2359885 100644 --- a/contracts/bounties/CrowdsaleTokenBounty.sol +++ b/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; diff --git a/contracts/bounties/SimpleTokenBounty.sol b/contracts/bounties/SimpleTokenBounty.sol index 3f8bf8d4a..e20301bca 100644 --- a/contracts/bounties/SimpleTokenBounty.sol +++ b/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;