reorganize examples into folder
This commit is contained in:
21
contracts/examples/BadPushPayments.sol
Normal file
21
contracts/examples/BadPushPayments.sol
Normal file
@ -0,0 +1,21 @@
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user