Browse Source

remove tabs

Manuel Araoz 9 years ago
parent
commit
4ad2e0fb2d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      contracts/PullPaymentBid.sol

+ 2 - 2
contracts/PullPaymentBid.sol

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