Files
openzeppelin-contracts/contracts/examples/BadPushPayments.sol
2016-08-16 12:26:25 -03:00

22 lines
356 B
Solidity

// UNSAFE CODE, DO NOT USE!
contract BadPushPayments {
address highestBidder;
uint highestBid;
function bid() {
if (msg.value < highestBid) throw;
if (highestBidder != 0) {
// return bid to previous winner
if (!highestBidder.send(highestBid)) {
throw;
}
}
highestBidder = msg.sender;
highestBid = msg.value;
}
}