diff options
-rw-r--r-- | docs/solidity-by-example.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index 7b28296f..59ab7962 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -222,7 +222,6 @@ activate themselves. // or time periods in seconds. address public beneficiary; uint public auctionEnd; - uint public biddingTime; // Current state of the auction. address public highestBidder; @@ -251,8 +250,7 @@ activate themselves. address _beneficiary ) { beneficiary = _beneficiary; - auctionEnd = now + biddingTime; - biddingTime = _biddingTime; + auctionEnd = now + _biddingTime; } /// Bid on the auction with the value sent |