functionauctionEnd() { // 1. Conditions if (now <= auctionStart + biddingTime) throw; // auction did not yet end if (ended) throw; // this function has already been called
import'./PullPayment.sol'; import'./Stoppable.sol'; contract StoppableBid is Stoppable, PullPayment { address public highestBidder; uint public highestBid;