Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/introduction-to-smart-contracts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ registering with username and password - all you need is an Ethereum keypair.

::

pragma solidity ^0.4.20; // should actually be 0.4.21
pragma solidity ^0.4.21;

contract Coin {
// The keyword "public" makes those variables
Expand Down
6 changes: 3 additions & 3 deletions docs/solidity-by-example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ activate themselves.

::

pragma solidity ^0.4.20; // should actually be 0.4.21
pragma solidity ^0.4.21;

contract SimpleAuction {
// Parameters of the auction. Times are either
Expand Down Expand Up @@ -376,7 +376,7 @@ high or low invalid bids.

::

pragma solidity ^0.4.20; // should actually be 0.4.21
pragma solidity ^0.4.21;

contract BlindAuction {
struct Bid {
Expand Down Expand Up @@ -529,7 +529,7 @@ Safe Remote Purchase

::

pragma solidity ^0.4.20; // should actually be 0.4.21
pragma solidity ^0.4.21;

contract Purchase {
uint public value;
Expand Down
2 changes: 1 addition & 1 deletion docs/structure-of-a-contract.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Events are convenience interfaces with the EVM logging facilities.

::

pragma solidity ^0.4.20; // should actually be 0.4.21
pragma solidity ^0.4.21;

contract SimpleAuction {
event HighestBidIncreased(address bidder, uint amount); // Event
Expand Down
2 changes: 1 addition & 1 deletion docs/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ Example that shows how to use internal function types::

Another example that uses external function types::

pragma solidity ^0.4.20; // should actually be 0.4.21
pragma solidity ^0.4.21;

contract Oracle {
struct Request {
Expand Down