PullPayment rename fixes

This commit is contained in:
Michael J. Curry
2016-10-12 13:53:38 -04:00
parent 25d0ed0006
commit 21fb7463c7
7 changed files with 16 additions and 16 deletions

View File

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