remove tabs

pull/14/head
Manuel Araoz 9 years ago
parent 7e28df63d5
commit 4ad2e0fb2d
  1. 4
      contracts/PullPaymentBid.sol

@ -1,14 +1,14 @@
import './PullPaymentCapable.sol'; import './PullPaymentCapable.sol';
contract PullPaymentBid is PullPaymentCapable { contract PullPaymentBid is PullPaymentCapable {
address public highestBidder; address public highestBidder;
uint public highestBid; uint public highestBid;
function bid() external { function bid() external {
if (msg.value <= highestBid) throw; if (msg.value <= highestBid) throw;
if (highestBidder != 0) { if (highestBidder != 0) {
asyncSend(highestBidder, highestBid); asyncSend(highestBidder, highestBid);
} }
highestBidder = msg.sender; highestBidder = msg.sender;
highestBid = msg.value; highestBid = msg.value;

Loading…
Cancel
Save