From d05b24162f8d88d15601af8f5b3fdb713f3755b4 Mon Sep 17 00:00:00 2001 From: William Morriss Date: Sun, 8 Oct 2017 13:40:18 -0700 Subject: also rm biddingTime --- docs/solidity-by-example.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'docs') 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 -- cgit v1.2.3