From cea46acef75781d80bf4797f9e836ce8077796fd Mon Sep 17 00:00:00 2001 From: Daniel Kirchner Date: Fri, 13 Jul 2018 14:12:06 +0200 Subject: Update documentation. --- docs/solidity-by-example.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs') diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index 3934d29d..3f054297 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -232,7 +232,7 @@ activate themselves. // absolute unix timestamps (seconds since 1970-01-01) // or time periods in seconds. address public beneficiary; - uint public auctionEnd; + uint public auctionEndTime; // Current state of the auction. address public highestBidder; @@ -261,7 +261,7 @@ activate themselves. address _beneficiary ) public { beneficiary = _beneficiary; - auctionEnd = now + _biddingTime; + auctionEndTime = now + _biddingTime; } /// Bid on the auction with the value sent @@ -278,7 +278,7 @@ activate themselves. // Revert the call if the bidding // period is over. require( - now <= auctionEnd, + now <= auctionEndTime, "Auction already ended." ); @@ -337,7 +337,7 @@ activate themselves. // external contracts. // 1. Conditions - require(now >= auctionEnd, "Auction not yet ended."); + require(now >= auctionEndTime, "Auction not yet ended."); require(!ended, "auctionEnd has already been called."); // 2. Effects -- cgit v1.2.3