Merge remote-tracking branch 'origin/develop' into breaking

This commit is contained in:
chriseth
2020-05-14 13:04:46 +02:00
288 changed files with 1934 additions and 409 deletions
+2
View File
@@ -24,6 +24,7 @@ to receive their money - contracts cannot activate themselves.
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0 <0.8.0;
contract SimpleAuction {
@@ -184,6 +185,7 @@ invalid bids.
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0 <0.8.0;
contract BlindAuction {
+2
View File
@@ -142,6 +142,7 @@ The full contract
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.24 <0.8.0;
contract ReceiverPays {
@@ -338,6 +339,7 @@ The full contract
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0 <0.8.0;
contract SimplePaymentChannel {
+1
View File
@@ -19,6 +19,7 @@ and the sum of all balances is an invariant across the lifetime of the contract.
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0 <0.8.0;
library Balances {
+1
View File
@@ -25,6 +25,7 @@ you can use state machine-like constructs inside a contract.
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0 <0.8.0;
contract Purchase {
+1
View File
@@ -32,6 +32,7 @@ of votes.
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.8.0;
/// @title Voting with delegation.