Fix example contracts
This commit is contained in:
@ -9,7 +9,7 @@ contract StoppableBid is Stoppable, PullPayment {
|
||||
address public highestBidder;
|
||||
uint public highestBid;
|
||||
|
||||
function bid() external stopInEmergency {
|
||||
function bid() external payable stopInEmergency {
|
||||
if (msg.value <= highestBid) throw;
|
||||
|
||||
if (highestBidder != 0) {
|
||||
|
||||
Reference in New Issue
Block a user