mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Tests/Docs: changing type of msg.sender and tx.origin into address
And also making the type of address(literal) as non-payable address.
This commit is contained in:
parent
e1a95cfd42
commit
88c99a7538
@ -27,6 +27,8 @@ Breaking Changes:
|
|||||||
* Type System: Support ``address(...).codehash`` to retrieve the codehash of an account.
|
* Type System: Support ``address(...).codehash`` to retrieve the codehash of an account.
|
||||||
* Type System: Unary negation can only be used on signed integers, not on unsigned integers.
|
* Type System: Unary negation can only be used on signed integers, not on unsigned integers.
|
||||||
* View Pure Checker: Mark ``chainid`` as view.
|
* View Pure Checker: Mark ``chainid`` as view.
|
||||||
|
* Type System: Address-literals and explicit conversions of integer-literals into ``address `` have type ``address`` instead of ``address payable``.
|
||||||
|
* Type System: The global variables ``tx.origin`` and ``msg.sender`` have type ``address`` instead of ``address payable``.
|
||||||
* Yul: Disallow the use of reserved identifiers, such as EVM instructions, even if they are not available in the given dialect / EVM version.
|
* Yul: Disallow the use of reserved identifiers, such as EVM instructions, even if they are not available in the given dialect / EVM version.
|
||||||
|
|
||||||
Language Features:
|
Language Features:
|
||||||
|
@ -65,6 +65,13 @@ This section lists changes that might cause existing contracts to not compile an
|
|||||||
with ``type(uint).max``.
|
with ``type(uint).max``.
|
||||||
3. Explicit conversions between literals and enums are only allowed if the literal can
|
3. Explicit conversions between literals and enums are only allowed if the literal can
|
||||||
represent a value in the enum.
|
represent a value in the enum.
|
||||||
|
4. Explicit conversions between literals and ``address`` type (e.g. ``address(literal)``) have the
|
||||||
|
type ``address`` instead of ``address payable``. One can get a payable address type by using an
|
||||||
|
explicit conversion, i.e., ``payable(literal)``.
|
||||||
|
|
||||||
|
* :ref:`Address literals<address_literals>` have the type ``address`` instead of ``address
|
||||||
|
payable``. They can be converted to ``address payable`` by using an explicit conversion, e.g.
|
||||||
|
``payable(0xdCad3a6d3569DF655070DEd06cb7A1b2Ccd1D3AF)``.
|
||||||
|
|
||||||
* There are new restrictions on explicit type conversions. The conversion is only allowed when there
|
* There are new restrictions on explicit type conversions. The conversion is only allowed when there
|
||||||
is at most one change in sign, width or type-category (``int``, ``address``, ``bytesNN``, etc.).
|
is at most one change in sign, width or type-category (``int``, ``address``, ``bytesNN``, etc.).
|
||||||
@ -105,6 +112,12 @@ This section lists changes that might cause existing contracts to not compile an
|
|||||||
|
|
||||||
* Remove support for the ``\b``, ``\f``, and ``\v`` escape sequences in code.
|
* Remove support for the ``\b``, ``\f``, and ``\v`` escape sequences in code.
|
||||||
They can still be inserted via hexadecimal escapes, e.g. ``\x08``, ``\x0c``, and ``\x0b``, respectively.
|
They can still be inserted via hexadecimal escapes, e.g. ``\x08``, ``\x0c``, and ``\x0b``, respectively.
|
||||||
|
* The global variables ``tx.origin`` and ``msg.sender`` have the type ``address`` instead of
|
||||||
|
``address payable``. One can convert them into ``address payable`` by using an explicit
|
||||||
|
conversion, i.e., ``payable(tx.origin)`` or ``payable(msg.sender)``.
|
||||||
|
|
||||||
|
This change was done since the compiler cannot determine whether or not these addresses
|
||||||
|
are payable or not, so it now requires an explicit conversion to make this requirement visible.
|
||||||
|
|
||||||
* The ``chainid`` builtin in inline assembly is now considered ``view`` instead of ``pure``.
|
* The ``chainid`` builtin in inline assembly is now considered ``view`` instead of ``pure``.
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ you receive the funds of the person who is now the richest.
|
|||||||
// Remember to zero the pending refund before
|
// Remember to zero the pending refund before
|
||||||
// sending to prevent re-entrancy attacks
|
// sending to prevent re-entrancy attacks
|
||||||
pendingWithdrawals[msg.sender] = 0;
|
pendingWithdrawals[msg.sender] = 0;
|
||||||
msg.sender.transfer(amount);
|
payable(msg.sender).transfer(amount);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -69,7 +69,7 @@ This is as opposed to the more intuitive sending pattern:
|
|||||||
uint public mostSent;
|
uint public mostSent;
|
||||||
|
|
||||||
constructor() payable {
|
constructor() payable {
|
||||||
richest = msg.sender;
|
richest = payable(msg.sender);
|
||||||
mostSent = msg.value;
|
mostSent = msg.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ This is as opposed to the more intuitive sending pattern:
|
|||||||
require(msg.value > mostSent, "Not enough money sent.");
|
require(msg.value > mostSent, "Not enough money sent.");
|
||||||
// This line can cause problems (explained below).
|
// This line can cause problems (explained below).
|
||||||
richest.transfer(msg.value);
|
richest.transfer(msg.value);
|
||||||
richest = msg.sender;
|
richest = payable(msg.sender);
|
||||||
mostSent = msg.value;
|
mostSent = msg.value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -124,7 +124,7 @@ restrictions highly readable.
|
|||||||
::
|
::
|
||||||
|
|
||||||
// SPDX-License-Identifier: GPL-3.0
|
// SPDX-License-Identifier: GPL-3.0
|
||||||
pragma solidity >=0.4.22 <0.9.0;
|
pragma solidity >=0.6.0 <0.9.0;
|
||||||
|
|
||||||
contract AccessRestriction {
|
contract AccessRestriction {
|
||||||
// These will be assigned at the construction
|
// These will be assigned at the construction
|
||||||
@ -192,7 +192,7 @@ restrictions highly readable.
|
|||||||
);
|
);
|
||||||
_;
|
_;
|
||||||
if (msg.value > _amount)
|
if (msg.value > _amount)
|
||||||
msg.sender.transfer(msg.value - _amount);
|
payable(msg.sender).transfer(msg.value - _amount);
|
||||||
}
|
}
|
||||||
|
|
||||||
function forceOwnerChange(address _newOwner)
|
function forceOwnerChange(address _newOwner)
|
||||||
|
@ -21,7 +21,7 @@ if they are marked ``virtual``. For details, please see
|
|||||||
pragma solidity >0.7.0 <0.9.0;
|
pragma solidity >0.7.0 <0.9.0;
|
||||||
|
|
||||||
contract owned {
|
contract owned {
|
||||||
constructor() { owner = msg.sender; }
|
constructor() { owner = payable(msg.sender); }
|
||||||
address payable owner;
|
address payable owner;
|
||||||
|
|
||||||
// This contract only defines a modifier but does not use
|
// This contract only defines a modifier but does not use
|
||||||
|
@ -43,7 +43,7 @@ Details are given in the following example.
|
|||||||
|
|
||||||
|
|
||||||
contract Owned {
|
contract Owned {
|
||||||
constructor() { owner = msg.sender; }
|
constructor() { owner = payable(msg.sender); }
|
||||||
address payable owner;
|
address payable owner;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -130,7 +130,7 @@ seen in the following example::
|
|||||||
pragma solidity >=0.7.0 <0.9.0;
|
pragma solidity >=0.7.0 <0.9.0;
|
||||||
|
|
||||||
contract owned {
|
contract owned {
|
||||||
constructor() { owner = msg.sender; }
|
constructor() { owner = payable(msg.sender); }
|
||||||
address payable owner;
|
address payable owner;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,7 +160,7 @@ explicitly in the final override, but this function will bypass
|
|||||||
pragma solidity >=0.7.0 <0.9.0;
|
pragma solidity >=0.7.0 <0.9.0;
|
||||||
|
|
||||||
contract owned {
|
contract owned {
|
||||||
constructor() { owner = msg.sender; }
|
constructor() { owner = payable(msg.sender); }
|
||||||
address payable owner;
|
address payable owner;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,7 +114,7 @@ to receive their money - contracts cannot activate themselves.
|
|||||||
// before `send` returns.
|
// before `send` returns.
|
||||||
pendingReturns[msg.sender] = 0;
|
pendingReturns[msg.sender] = 0;
|
||||||
|
|
||||||
if (!msg.sender.send(amount)) {
|
if (!payable(msg.sender).send(amount)) {
|
||||||
// No need to call throw here, just reset the amount owing
|
// No need to call throw here, just reset the amount owing
|
||||||
pendingReturns[msg.sender] = amount;
|
pendingReturns[msg.sender] = amount;
|
||||||
return false;
|
return false;
|
||||||
@ -280,7 +280,7 @@ invalid bids.
|
|||||||
// the same deposit.
|
// the same deposit.
|
||||||
bidToCheck.blindedBid = bytes32(0);
|
bidToCheck.blindedBid = bytes32(0);
|
||||||
}
|
}
|
||||||
msg.sender.transfer(refund);
|
payable(msg.sender).transfer(refund);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Withdraw a bid that was overbid.
|
/// Withdraw a bid that was overbid.
|
||||||
@ -293,7 +293,7 @@ invalid bids.
|
|||||||
// conditions -> effects -> interaction).
|
// conditions -> effects -> interaction).
|
||||||
pendingReturns[msg.sender] = 0;
|
pendingReturns[msg.sender] = 0;
|
||||||
|
|
||||||
msg.sender.transfer(amount);
|
payable(msg.sender).transfer(amount);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -159,13 +159,13 @@ The full contract
|
|||||||
|
|
||||||
require(recoverSigner(message, signature) == owner);
|
require(recoverSigner(message, signature) == owner);
|
||||||
|
|
||||||
msg.sender.transfer(amount);
|
payable(msg.sender).transfer(amount);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// destroy the contract and reclaim the leftover funds.
|
/// destroy the contract and reclaim the leftover funds.
|
||||||
function shutdown() public {
|
function shutdown() public {
|
||||||
require(msg.sender == owner);
|
require(msg.sender == owner);
|
||||||
selfdestruct(msg.sender);
|
selfdestruct(payable(msg.sender));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// signature methods.
|
/// signature methods.
|
||||||
@ -347,7 +347,7 @@ The full contract
|
|||||||
constructor (address payable _recipient, uint256 duration)
|
constructor (address payable _recipient, uint256 duration)
|
||||||
payable
|
payable
|
||||||
{
|
{
|
||||||
sender = msg.sender;
|
sender = payable(msg.sender);
|
||||||
recipient = _recipient;
|
recipient = _recipient;
|
||||||
expiration = block.timestamp + duration;
|
expiration = block.timestamp + duration;
|
||||||
}
|
}
|
||||||
|
@ -74,7 +74,7 @@ you can use state machine-like constructs inside a contract.
|
|||||||
// Division will truncate if it is an odd number.
|
// Division will truncate if it is an odd number.
|
||||||
// Check via multiplication that it wasn't an odd number.
|
// Check via multiplication that it wasn't an odd number.
|
||||||
constructor() payable {
|
constructor() payable {
|
||||||
seller = msg.sender;
|
seller = payable(msg.sender);
|
||||||
value = msg.value / 2;
|
value = msg.value / 2;
|
||||||
require((2 * value) == msg.value, "Value has to be even.");
|
require((2 * value) == msg.value, "Value has to be even.");
|
||||||
}
|
}
|
||||||
@ -107,7 +107,7 @@ you can use state machine-like constructs inside a contract.
|
|||||||
payable
|
payable
|
||||||
{
|
{
|
||||||
emit PurchaseConfirmed();
|
emit PurchaseConfirmed();
|
||||||
buyer = msg.sender;
|
buyer = payable(msg.sender);
|
||||||
state = State.Locked;
|
state = State.Locked;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ complete contract):
|
|||||||
::
|
::
|
||||||
|
|
||||||
// SPDX-License-Identifier: GPL-3.0
|
// SPDX-License-Identifier: GPL-3.0
|
||||||
pragma solidity >=0.4.0 <0.9.0;
|
pragma solidity >=0.6.0 <0.9.0;
|
||||||
|
|
||||||
// THIS CONTRACT CONTAINS A BUG - DO NOT USE
|
// THIS CONTRACT CONTAINS A BUG - DO NOT USE
|
||||||
contract Fund {
|
contract Fund {
|
||||||
@ -67,7 +67,7 @@ complete contract):
|
|||||||
mapping(address => uint) shares;
|
mapping(address => uint) shares;
|
||||||
/// Withdraw your share.
|
/// Withdraw your share.
|
||||||
function withdraw() public {
|
function withdraw() public {
|
||||||
if (msg.sender.send(shares[msg.sender]))
|
if (payable(msg.sender).send(shares[msg.sender]))
|
||||||
shares[msg.sender] = 0;
|
shares[msg.sender] = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -103,7 +103,7 @@ outlined further below:
|
|||||||
::
|
::
|
||||||
|
|
||||||
// SPDX-License-Identifier: GPL-3.0
|
// SPDX-License-Identifier: GPL-3.0
|
||||||
pragma solidity >=0.4.11 <0.9.0;
|
pragma solidity >=0.6.0 <0.9.0;
|
||||||
|
|
||||||
contract Fund {
|
contract Fund {
|
||||||
/// @dev Mapping of ether shares of the contract.
|
/// @dev Mapping of ether shares of the contract.
|
||||||
@ -112,7 +112,7 @@ outlined further below:
|
|||||||
function withdraw() public {
|
function withdraw() public {
|
||||||
uint share = shares[msg.sender];
|
uint share = shares[msg.sender];
|
||||||
shares[msg.sender] = 0;
|
shares[msg.sender] = 0;
|
||||||
msg.sender.transfer(share);
|
payable(msg.sender).transfer(share);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -230,7 +230,7 @@ Now someone tricks you into sending Ether to the address of this attack wallet:
|
|||||||
address payable owner;
|
address payable owner;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
owner = msg.sender;
|
owner = payable(msg.sender);
|
||||||
}
|
}
|
||||||
|
|
||||||
receive() external payable {
|
receive() external payable {
|
||||||
|
@ -188,25 +188,22 @@ Type conversions:
|
|||||||
Implicit conversions from ``address payable`` to ``address`` are allowed, whereas conversions from ``address`` to ``address payable``
|
Implicit conversions from ``address payable`` to ``address`` are allowed, whereas conversions from ``address`` to ``address payable``
|
||||||
must be explicit via ``payable(<address>)``.
|
must be explicit via ``payable(<address>)``.
|
||||||
|
|
||||||
:ref:`Address literals<address_literals>` can be implicitly converted to ``address payable``.
|
|
||||||
|
|
||||||
Explicit conversions to and from ``address`` are allowed for integers, integer literals, ``bytes20`` and contract types with the following
|
Explicit conversions to and from ``address`` are allowed for integers, integer literals, ``bytes20`` and contract types with the following
|
||||||
caveat:
|
caveat:
|
||||||
The result of a conversion of the form ``address(x)``
|
The result of a conversion of the form ``address(x)``
|
||||||
has the type ``address payable``, if ``x`` is of integer or fixed bytes type,
|
has the type ``address payable``, if ``x`` is of integer or fixed bytes type,
|
||||||
a literal or a contract with a receive or payable fallback function.
|
or a contract with a receive or payable fallback function.
|
||||||
If ``x`` is a contract without a receive or payable fallback function,
|
If ``x`` is a contract without a receive or payable fallback function,
|
||||||
then ``address(x)`` will be of type ``address``.
|
then ``address(x)`` will be of type ``address``.
|
||||||
|
Similarly, if ``x`` is a literal, then ``address(x)`` will also be of type ``address``.
|
||||||
In external function signatures ``address`` is used for both the ``address`` and the ``address payable`` type.
|
In external function signatures ``address`` is used for both the ``address`` and the ``address payable`` type.
|
||||||
|
|
||||||
Only expressions of type ``address`` can be converted to type ``address payable`` via ``payable(<address>)``.
|
Only expressions of type ``address`` can be converted to type ``address payable`` via ``payable(<address>)``.
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
It might very well be that you do not need to care about the distinction between ``address``
|
If you need a variable of type ``address`` and plan to send Ether to it, then
|
||||||
and ``address payable`` and just use ``address`` everywhere. For example,
|
declare its type as ``address payable`` to make this requirement visible. Also,
|
||||||
if you are using the :ref:`withdrawal pattern<withdrawal_pattern>`, you can (and should) store the
|
try to make this distinction or conversion as early as possible.
|
||||||
address itself as ``address``, because you invoke the ``transfer`` function on
|
|
||||||
``msg.sender``, which is an ``address payable``.
|
|
||||||
|
|
||||||
Operators:
|
Operators:
|
||||||
|
|
||||||
@ -410,7 +407,7 @@ Address Literals
|
|||||||
----------------
|
----------------
|
||||||
|
|
||||||
Hexadecimal literals that pass the address checksum test, for example
|
Hexadecimal literals that pass the address checksum test, for example
|
||||||
``0xdCad3a6d3569DF655070DEd06cb7A1b2Ccd1D3AF`` are of ``address payable`` type.
|
``0xdCad3a6d3569DF655070DEd06cb7A1b2Ccd1D3AF`` are of ``address`` type.
|
||||||
Hexadecimal literals that are between 39 and 41 digits
|
Hexadecimal literals that are between 39 and 41 digits
|
||||||
long and do not pass the checksum test produce
|
long and do not pass the checksum test produce
|
||||||
an error. You can prepend (for integer types) or append (for bytesNN types) zeros to remove the error.
|
an error. You can prepend (for integer types) or append (for bytesNN types) zeros to remove the error.
|
||||||
|
@ -65,7 +65,7 @@ contract ico is safeMath {
|
|||||||
icoExchangeRate = exchangeRate;
|
icoExchangeRate = exchangeRate;
|
||||||
icoExchangeRateSetBlock = block.number + exchangeRateDelay;
|
icoExchangeRateSetBlock = block.number + exchangeRateDelay;
|
||||||
icoEtcPriceAddr = priceSet;
|
icoEtcPriceAddr = priceSet;
|
||||||
owner = msg.sender;
|
owner = payable(msg.sender);
|
||||||
if ( startBlockNum > 0 ) {
|
if ( startBlockNum > 0 ) {
|
||||||
require( startBlockNum >= block.number );
|
require( startBlockNum >= block.number );
|
||||||
startBlock = startBlockNum;
|
startBlock = startBlockNum;
|
||||||
@ -272,7 +272,7 @@ contract ico is safeMath {
|
|||||||
require( brought[msg.sender].eth > 0 );
|
require( brought[msg.sender].eth > 0 );
|
||||||
uint256 _val = brought[msg.sender].eth * 90 / 100;
|
uint256 _val = brought[msg.sender].eth * 90 / 100;
|
||||||
delete brought[msg.sender];
|
delete brought[msg.sender];
|
||||||
require( msg.sender.send(_val) );
|
require( payable(msg.sender).send(_val) );
|
||||||
}
|
}
|
||||||
|
|
||||||
receive () external payable {
|
receive () external payable {
|
||||||
@ -281,7 +281,7 @@ contract ico is safeMath {
|
|||||||
If they call the contract without any function then this process will be taken place.
|
If they call the contract without any function then this process will be taken place.
|
||||||
*/
|
*/
|
||||||
require( isICO() );
|
require( isICO() );
|
||||||
require( buy(msg.sender, address(0x00)) );
|
require( buy(payable(msg.sender), address(0x00)) );
|
||||||
}
|
}
|
||||||
|
|
||||||
function buy(address payable beneficiaryAddress, address affilateAddress) public payable returns (bool success) {
|
function buy(address payable beneficiaryAddress, address affilateAddress) public payable returns (bool success) {
|
||||||
@ -300,7 +300,7 @@ contract ico is safeMath {
|
|||||||
@affilateAddress The address of the person who offered who will get the referral reward. It can not be equal with the beneficiaryAddress.
|
@affilateAddress The address of the person who offered who will get the referral reward. It can not be equal with the beneficiaryAddress.
|
||||||
*/
|
*/
|
||||||
require( isICO() );
|
require( isICO() );
|
||||||
if ( beneficiaryAddress == address(0x00)) { beneficiaryAddress = msg.sender; }
|
if ( beneficiaryAddress == address(0x00)) { beneficiaryAddress = payable(msg.sender); }
|
||||||
if ( beneficiaryAddress == affilateAddress ) {
|
if ( beneficiaryAddress == affilateAddress ) {
|
||||||
affilateAddress = address(0x00);
|
affilateAddress = address(0x00);
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@ contract ptokenDB is tokenDB {}
|
|||||||
*/
|
*/
|
||||||
contract premium is module, safeMath {
|
contract premium is module, safeMath {
|
||||||
function replaceModule(address payable addr) external override returns (bool success) {
|
function replaceModule(address payable addr) external override returns (bool success) {
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
require( db.replaceOwner(addr) );
|
require( db.replaceOwner(addr) );
|
||||||
super._replaceModule(addr);
|
super._replaceModule(addr);
|
||||||
return true;
|
return true;
|
||||||
|
@ -10,7 +10,7 @@ contract provider is module, safeMath, announcementTypes {
|
|||||||
module callbacks
|
module callbacks
|
||||||
*/
|
*/
|
||||||
function connectModule() external override returns (bool success) {
|
function connectModule() external override returns (bool success) {
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
super._connectModule();
|
super._connectModule();
|
||||||
(bool _success, uint256 currentSchellingRound) = moduleHandler(moduleHandlerAddress).getCurrentSchellingRoundID();
|
(bool _success, uint256 currentSchellingRound) = moduleHandler(moduleHandlerAddress).getCurrentSchellingRoundID();
|
||||||
require( _success );
|
require( _success );
|
||||||
@ -26,7 +26,7 @@ contract provider is module, safeMath, announcementTypes {
|
|||||||
@value amount
|
@value amount
|
||||||
@bool Was the function successful?
|
@bool Was the function successful?
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
transferEvent_(from, value, true);
|
transferEvent_(from, value, true);
|
||||||
transferEvent_(to, value, false);
|
transferEvent_(to, value, false);
|
||||||
return true;
|
return true;
|
||||||
@ -41,7 +41,7 @@ contract provider is module, safeMath, announcementTypes {
|
|||||||
@reward token emission
|
@reward token emission
|
||||||
@bool Was the function successful?
|
@bool Was the function successful?
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
globalFunds[roundID].reward = reward;
|
globalFunds[roundID].reward = reward;
|
||||||
globalFunds[roundID].supply = globalFunds[roundID-1].supply;
|
globalFunds[roundID].supply = globalFunds[roundID-1].supply;
|
||||||
currentSchellingRound = roundID;
|
currentSchellingRound = roundID;
|
||||||
@ -133,7 +133,7 @@ contract provider is module, safeMath, announcementTypes {
|
|||||||
@a Type of the setting
|
@a Type of the setting
|
||||||
@b value
|
@b value
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
if ( a == announcementType.providerPublicFunds ) { minFundsForPublic = b; }
|
if ( a == announcementType.providerPublicFunds ) { minFundsForPublic = b; }
|
||||||
else if ( a == announcementType.providerPrivateFunds ) { minFundsForPrivate = b; }
|
else if ( a == announcementType.providerPrivateFunds ) { minFundsForPrivate = b; }
|
||||||
else if ( a == announcementType.providerPrivateClientLimit ) { privateProviderLimit = b; }
|
else if ( a == announcementType.providerPrivateClientLimit ) { privateProviderLimit = b; }
|
||||||
|
@ -14,7 +14,7 @@ contract publisher is announcementTypes, module, safeMath {
|
|||||||
Transaction completed. This function is available only for moduleHandler
|
Transaction completed. This function is available only for moduleHandler
|
||||||
If a transaction is carried out from or to an address which participated in the objection of an announcement, its objection purport is automatically set
|
If a transaction is carried out from or to an address which participated in the objection of an announcement, its objection purport is automatically set
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
uint256 announcementID;
|
uint256 announcementID;
|
||||||
uint256 a;
|
uint256 a;
|
||||||
// need reverse lookup
|
// need reverse lookup
|
||||||
|
@ -136,7 +136,7 @@ contract schelling is module, announcementTypes, schellingVars {
|
|||||||
module callbacks
|
module callbacks
|
||||||
*/
|
*/
|
||||||
function replaceModule(address payable addr) external override returns (bool) {
|
function replaceModule(address payable addr) external override returns (bool) {
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
require( db.replaceOwner(addr) );
|
require( db.replaceOwner(addr) );
|
||||||
super._replaceModule(addr);
|
super._replaceModule(addr);
|
||||||
return true;
|
return true;
|
||||||
@ -151,7 +151,7 @@ contract schelling is module, announcementTypes, schellingVars {
|
|||||||
@value Amount
|
@value Amount
|
||||||
@bool Was the transaction successful?
|
@bool Was the transaction successful?
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
if ( to == address(this) ) {
|
if ( to == address(this) ) {
|
||||||
uint256 currentRound = getCurrentRound();
|
uint256 currentRound = getCurrentRound();
|
||||||
schellingVars._rounds memory round = getRound(currentRound);
|
schellingVars._rounds memory round = getRound(currentRound);
|
||||||
@ -271,7 +271,7 @@ contract schelling is module, announcementTypes, schellingVars {
|
|||||||
@a Sort of configuration
|
@a Sort of configuration
|
||||||
@b Value
|
@b Value
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
if ( a == announcementType.schellingRoundBlockDelay ) { roundBlockDelay = b; }
|
if ( a == announcementType.schellingRoundBlockDelay ) { roundBlockDelay = b; }
|
||||||
else if ( a == announcementType.schellingCheckRounds ) { interestCheckRounds = uint8(b); }
|
else if ( a == announcementType.schellingCheckRounds ) { interestCheckRounds = uint8(b); }
|
||||||
else if ( a == announcementType.schellingCheckAboves ) { interestCheckAboves = uint8(b); }
|
else if ( a == announcementType.schellingCheckAboves ) { interestCheckAboves = uint8(b); }
|
||||||
|
@ -22,7 +22,7 @@ contract token is safeMath, module, announcementTypes {
|
|||||||
module callbacks
|
module callbacks
|
||||||
*/
|
*/
|
||||||
function replaceModule(address payable addr) external override returns (bool success) {
|
function replaceModule(address payable addr) external override returns (bool success) {
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
require( db.replaceOwner(addr) );
|
require( db.replaceOwner(addr) );
|
||||||
super._replaceModule(addr);
|
super._replaceModule(addr);
|
||||||
return true;
|
return true;
|
||||||
@ -255,7 +255,7 @@ contract token is safeMath, module, announcementTypes {
|
|||||||
@success Was the Function successful?
|
@success Was the Function successful?
|
||||||
*/
|
*/
|
||||||
bytes memory _data;
|
bytes memory _data;
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
_transfer( from, to, amount, fee);
|
_transfer( from, to, amount, fee);
|
||||||
emit Transfer(from, to, amount, _data);
|
emit Transfer(from, to, amount, _data);
|
||||||
return true;
|
return true;
|
||||||
@ -353,7 +353,7 @@ contract token is safeMath, module, announcementTypes {
|
|||||||
|
|
||||||
@success Was the Function successful?
|
@success Was the Function successful?
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
_processTransactionFee(owner, value);
|
_processTransactionFee(owner, value);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -412,7 +412,7 @@ contract token is safeMath, module, announcementTypes {
|
|||||||
|
|
||||||
@success Was the Function successful?
|
@success Was the Function successful?
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) || msg.sender == icoAddr );
|
require( super.isModuleHandler(payable(msg.sender)) || msg.sender == icoAddr );
|
||||||
_mint(owner, value);
|
_mint(owner, value);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -441,7 +441,7 @@ contract token is safeMath, module, announcementTypes {
|
|||||||
|
|
||||||
@success Was the Function successful?
|
@success Was the Function successful?
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
_burn(owner, value);
|
_burn(owner, value);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -502,7 +502,7 @@ contract token is safeMath, module, announcementTypes {
|
|||||||
|
|
||||||
@success Was the Function successful?
|
@success Was the Function successful?
|
||||||
*/
|
*/
|
||||||
require( super.isModuleHandler(msg.sender) );
|
require( super.isModuleHandler(payable(msg.sender)) );
|
||||||
if ( aType == announcementType.transactionFeeRate ) { transactionFeeRate = value; }
|
if ( aType == announcementType.transactionFeeRate ) { transactionFeeRate = value; }
|
||||||
else if ( aType == announcementType.transactionFeeMin ) { transactionFeeMin = value; }
|
else if ( aType == announcementType.transactionFeeMin ) { transactionFeeMin = value; }
|
||||||
else if ( aType == announcementType.transactionFeeMax ) { transactionFeeMax = value; }
|
else if ( aType == announcementType.transactionFeeMax ) { transactionFeeMax = value; }
|
||||||
|
@ -41,7 +41,7 @@ contract EtherToken is StandardToken {
|
|||||||
// Balance covers value
|
// Balance covers value
|
||||||
balances[msg.sender] = balances[msg.sender].sub(value);
|
balances[msg.sender] = balances[msg.sender].sub(value);
|
||||||
totalTokens = totalTokens.sub(value);
|
totalTokens = totalTokens.sub(value);
|
||||||
msg.sender.transfer(value);
|
payable(msg.sender).transfer(value);
|
||||||
emit Withdrawal(msg.sender, value);
|
emit Withdrawal(msg.sender, value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,7 @@ namespace solidity::frontend::test
|
|||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
static char const* registrarCode = R"DELIMITER(
|
static char const* registrarCode = R"DELIMITER(
|
||||||
pragma solidity >=0.4.0 <0.9.0;
|
pragma solidity >=0.7.0 <0.9.0;
|
||||||
|
|
||||||
abstract contract NameRegister {
|
abstract contract NameRegister {
|
||||||
function addr(string memory _name) public virtual view returns (address o_owner);
|
function addr(string memory _name) public virtual view returns (address o_owner);
|
||||||
@ -143,12 +143,12 @@ contract GlobalRegistrar is Registrar, AuctionSystem {
|
|||||||
{
|
{
|
||||||
if (block.timestamp < m_toRecord[_name].renewalDate)
|
if (block.timestamp < m_toRecord[_name].renewalDate)
|
||||||
revert();
|
revert();
|
||||||
bid(_name, msg.sender, msg.value);
|
bid(_name, payable(msg.sender), msg.value);
|
||||||
} else {
|
} else {
|
||||||
Record storage record = m_toRecord[_name];
|
Record storage record = m_toRecord[_name];
|
||||||
if (record.owner != 0x0000000000000000000000000000000000000000)
|
if (record.owner != 0x0000000000000000000000000000000000000000)
|
||||||
revert();
|
revert();
|
||||||
m_toRecord[_name].owner = msg.sender;
|
m_toRecord[_name].owner = payable(msg.sender);
|
||||||
emit Changed(_name);
|
emit Changed(_name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -391,7 +391,7 @@ contract DAO is DAOInterface, Token, TokenCreation {
|
|||||||
|
|
||||||
receive() external payable override(DAOInterface, TokenCreation) {
|
receive() external payable override(DAOInterface, TokenCreation) {
|
||||||
if (block.timestamp < closingTime + creationGracePeriod && msg.sender != address(extraBalance))
|
if (block.timestamp < closingTime + creationGracePeriod && msg.sender != address(extraBalance))
|
||||||
createTokenProxy(msg.sender);
|
createTokenProxy(payable(msg.sender));
|
||||||
else
|
else
|
||||||
receiveEther();
|
receiveEther();
|
||||||
}
|
}
|
||||||
@ -459,7 +459,7 @@ contract DAO is DAOInterface, Token, TokenCreation {
|
|||||||
p.newCurator = _newCurator;
|
p.newCurator = _newCurator;
|
||||||
if (_newCurator)
|
if (_newCurator)
|
||||||
p.splitData.push();
|
p.splitData.push();
|
||||||
p.creator = msg.sender;
|
p.creator = payable(msg.sender);
|
||||||
p.proposalDeposit = msg.value;
|
p.proposalDeposit = msg.value;
|
||||||
|
|
||||||
sumOfProposalDeposits += msg.value;
|
sumOfProposalDeposits += msg.value;
|
||||||
@ -663,7 +663,7 @@ contract DAO is DAOInterface, Token, TokenCreation {
|
|||||||
uint fundsToBeMoved =
|
uint fundsToBeMoved =
|
||||||
(balances[msg.sender] * p.splitData[0].splitBalance) /
|
(balances[msg.sender] * p.splitData[0].splitBalance) /
|
||||||
p.splitData[0].totalSupply;
|
p.splitData[0].totalSupply;
|
||||||
if (p.splitData[0].newDAO.createTokenProxy{value: fundsToBeMoved}(msg.sender) == false)
|
if (p.splitData[0].newDAO.createTokenProxy{value: fundsToBeMoved}(payable(msg.sender)) == false)
|
||||||
revert();
|
revert();
|
||||||
|
|
||||||
|
|
||||||
@ -687,7 +687,7 @@ contract DAO is DAOInterface, Token, TokenCreation {
|
|||||||
|
|
||||||
// Burn DAO Tokens
|
// Burn DAO Tokens
|
||||||
emit Transfer(msg.sender, 0x0000000000000000000000000000000000000000, balances[msg.sender]);
|
emit Transfer(msg.sender, 0x0000000000000000000000000000000000000000, balances[msg.sender]);
|
||||||
withdrawRewardFor(msg.sender); // be nice, and get his rewards
|
withdrawRewardFor(payable(msg.sender)); // be nice, and get his rewards
|
||||||
totalSupply -= balances[msg.sender];
|
totalSupply -= balances[msg.sender];
|
||||||
balances[msg.sender] = 0;
|
balances[msg.sender] = 0;
|
||||||
paidOut[msg.sender] = 0;
|
paidOut[msg.sender] = 0;
|
||||||
@ -711,7 +711,7 @@ contract DAO is DAOInterface, Token, TokenCreation {
|
|||||||
|
|
||||||
|
|
||||||
function retrieveDAOReward(bool _toMembers) external override returns (bool _success) {
|
function retrieveDAOReward(bool _toMembers) external override returns (bool _success) {
|
||||||
DAO dao = DAO(msg.sender);
|
DAO dao = DAO(payable(msg.sender));
|
||||||
|
|
||||||
if ((rewardToken[msg.sender] * DAOrewardAccount.accumulatedInput()) /
|
if ((rewardToken[msg.sender] * DAOrewardAccount.accumulatedInput()) /
|
||||||
totalRewardToken < DAOpaidOut[msg.sender])
|
totalRewardToken < DAOpaidOut[msg.sender])
|
||||||
@ -736,7 +736,7 @@ contract DAO is DAOInterface, Token, TokenCreation {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getMyReward() public override returns (bool _success) {
|
function getMyReward() public override returns (bool _success) {
|
||||||
return withdrawRewardFor(msg.sender);
|
return withdrawRewardFor(payable(msg.sender));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -445,8 +445,8 @@
|
|||||||
"tryCall": false,
|
"tryCall": false,
|
||||||
"typeDescriptions":
|
"typeDescriptions":
|
||||||
{
|
{
|
||||||
"typeIdentifier": "t_address_payable",
|
"typeIdentifier": "t_address",
|
||||||
"typeString": "address payable"
|
"typeString": "address"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"src": "232:17:1",
|
"src": "232:17:1",
|
||||||
|
@ -3,7 +3,7 @@ contract C {
|
|||||||
bytes2 constant b = 0xabcd;
|
bytes2 constant b = 0xabcd;
|
||||||
bytes3 constant c = "abc";
|
bytes3 constant c = "abc";
|
||||||
bool constant d = true;
|
bool constant d = true;
|
||||||
address payable constant e = 0x1212121212121212121212121212121212121212;
|
address constant e = 0x1212121212121212121212121212121212121212;
|
||||||
function f() public pure returns (uint w, bytes2 x, bytes3 y, bool z, address t) {
|
function f() public pure returns (uint w, bytes2 x, bytes3 y, bool z, address t) {
|
||||||
assembly {
|
assembly {
|
||||||
w := a
|
w := a
|
||||||
|
@ -10,8 +10,8 @@ contract C {
|
|||||||
bytes3 constant cccc = ccc;
|
bytes3 constant cccc = ccc;
|
||||||
bool constant d = true;
|
bool constant d = true;
|
||||||
bool constant dd = d;
|
bool constant dd = d;
|
||||||
address payable constant e = 0x1212121212121212121212121212121212121212;
|
address constant e = 0x1212121212121212121212121212121212121212;
|
||||||
address payable constant ee = e;
|
address constant ee = e;
|
||||||
function f() public pure returns (uint w, bytes2 x, bytes3 y, bool z, address t) {
|
function f() public pure returns (uint w, bytes2 x, bytes3 y, bool z, address t) {
|
||||||
assembly {
|
assembly {
|
||||||
w := aaa
|
w := aaa
|
||||||
|
@ -4,7 +4,7 @@ contract test {
|
|||||||
x;
|
x;
|
||||||
}
|
}
|
||||||
function g() public {
|
function g() public {
|
||||||
suicide(0x0000000000000000000000000000000000000001);
|
suicide(payable(0x0000000000000000000000000000000000000001));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ----
|
// ----
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
contract C {
|
||||||
|
function f() public {
|
||||||
|
(msg.sender).send(10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError 9862: (47-64): "send" and "transfer" are only available for objects of type "address payable", not "address".
|
@ -0,0 +1,7 @@
|
|||||||
|
contract C {
|
||||||
|
function f() public {
|
||||||
|
(msg.sender).transfer(10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError 9862: (47-68): "send" and "transfer" are only available for objects of type "address payable", not "address".
|
@ -0,0 +1,7 @@
|
|||||||
|
contract C {
|
||||||
|
function f() public {
|
||||||
|
(tx.origin).send(10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError 9862: (47-63): "send" and "transfer" are only available for objects of type "address payable", not "address".
|
@ -0,0 +1,7 @@
|
|||||||
|
contract C {
|
||||||
|
function f() public {
|
||||||
|
(tx.origin).transfer(10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError 9862: (47-67): "send" and "transfer" are only available for objects of type "address payable", not "address".
|
@ -1,6 +1,6 @@
|
|||||||
contract test {
|
contract test {
|
||||||
function f() public {
|
function f() public {
|
||||||
address(0x12).send(1);
|
payable(0x12).send(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ----
|
// ----
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
contract C {
|
contract C {
|
||||||
function f() public {
|
function f() public {
|
||||||
(0xfA0bFc97E48458494Ccd857e1A85DC91F7F0046E).transfer(2);
|
payable(0xfA0bFc97E48458494Ccd857e1A85DC91F7F0046E).transfer(2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ----
|
// ----
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
contract C {
|
contract C {
|
||||||
address payable constant a = address(0);
|
address payable constant a = payable(0);
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ contract C {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ----
|
// ----
|
||||||
// TypeError 2271: (85-108): Operator + not compatible with types address payable and address payable. Arithmetic operations on addresses are not supported. Convert to integer first before using them.
|
// TypeError 2271: (85-108): Operator + not compatible with types address and address. Arithmetic operations on addresses are not supported. Convert to integer first before using them.
|
||||||
// TypeError 2271: (122-145): Operator - not compatible with types address payable and address payable. Arithmetic operations on addresses are not supported. Convert to integer first before using them.
|
// TypeError 2271: (122-145): Operator - not compatible with types address and address. Arithmetic operations on addresses are not supported. Convert to integer first before using them.
|
||||||
// TypeError 2271: (159-182): Operator * not compatible with types address payable and address payable. Arithmetic operations on addresses are not supported. Convert to integer first before using them.
|
// TypeError 2271: (159-182): Operator * not compatible with types address and address. Arithmetic operations on addresses are not supported. Convert to integer first before using them.
|
||||||
// TypeError 2271: (196-219): Operator / not compatible with types address payable and address payable. Arithmetic operations on addresses are not supported. Convert to integer first before using them.
|
// TypeError 2271: (196-219): Operator / not compatible with types address and address. Arithmetic operations on addresses are not supported. Convert to integer first before using them.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
contract C {
|
contract C {
|
||||||
address constant a = address(0);
|
address constant a = address(0);
|
||||||
address payable constant b = address(0);
|
address payable constant b = payable(0);
|
||||||
function f() public pure returns (address, address) {
|
function f() public pure returns (address, address) {
|
||||||
return (a,b);
|
return (a,b);
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
contract C {
|
contract C {
|
||||||
address constant a = address(0);
|
address constant a = address(0);
|
||||||
address payable constant b = address(0);
|
address payable constant b = payable(0);
|
||||||
function f() public {
|
function f() public {
|
||||||
a = address(0);
|
a = address(0);
|
||||||
b = address(0);
|
b = payable(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ----
|
// ----
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
contract C {
|
||||||
|
function f() public pure {
|
||||||
|
address payable a = payable(address(0x00000000219ab540356cBB839Cbe05303d7705Fa));
|
||||||
|
address payable b = payable(0x00000000219ab540356cBB839Cbe05303d7705Fa);
|
||||||
|
a = b;
|
||||||
|
b = a;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
@ -0,0 +1,9 @@
|
|||||||
|
contract C {
|
||||||
|
function f() public pure {
|
||||||
|
address payable a = address(0x00000000219ab540356cBB839Cbe05303d7705Fa);
|
||||||
|
address payable b = 0x00000000219ab540356cBB839Cbe05303d7705Fa;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError 9574: (52-123): Type address is not implicitly convertible to expected type address payable.
|
||||||
|
// TypeError 9574: (133-195): Type address is not implicitly convertible to expected type address payable.
|
@ -2,7 +2,7 @@ contract C {
|
|||||||
function f(address payable) internal pure {}
|
function f(address payable) internal pure {}
|
||||||
function f(address) internal pure {}
|
function f(address) internal pure {}
|
||||||
function g() internal pure {
|
function g() internal pure {
|
||||||
address payable a = address(0);
|
address payable a = payable(0);
|
||||||
f(a);
|
f(a);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,4 +4,4 @@ contract C {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ----
|
// ----
|
||||||
// TypeError 9574: (46-62): Type address payable is not implicitly convertible to expected type contract C.
|
// TypeError 9574: (46-62): Type address is not implicitly convertible to expected type contract C.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
contract C {
|
contract C {
|
||||||
function f() public pure returns (C c) {
|
function f() public pure returns (C c) {
|
||||||
c = C(address(2));
|
c = C(payable(2));
|
||||||
}
|
}
|
||||||
fallback() external payable {
|
fallback() external payable {
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
contract C {
|
contract C {
|
||||||
function f() public pure returns (C c) {
|
function f() public pure returns (C c) {
|
||||||
c = C(address(2));
|
c = C(payable(2));
|
||||||
}
|
}
|
||||||
receive() external payable {
|
receive() external payable {
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
contract C {
|
contract C {
|
||||||
function f() public view returns (address payable a, address b) {
|
function f() public view returns (address payable a, address b) {
|
||||||
(address c, address payable d) = (address(this), address(0));
|
(address c, address payable d) = (address(this), payable(0));
|
||||||
(a,b) = (c,d);
|
(a,b) = (c,d);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
contract C {
|
contract C {
|
||||||
function f() public view returns (address payable a, address b) {
|
function f() public view returns (address payable a, address b) {
|
||||||
(address c, address payable d) = (address(this), address(0));
|
(address c, address payable d) = (address(this), payable(0));
|
||||||
(a,b) = (d,c);
|
(a,b) = (d,c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
contract C {
|
||||||
|
function f() public returns (bool success) {
|
||||||
|
(success, ) = (address(0)).call{value: 30}("");
|
||||||
|
}
|
||||||
|
}
|
@ -1,8 +1,8 @@
|
|||||||
contract C {
|
contract C {
|
||||||
function f() public pure {
|
function f() public pure {
|
||||||
address payable a = address(0);
|
address payable a = payable(0);
|
||||||
a = address(1);
|
a = payable(1);
|
||||||
address payable b = 0x0123456789012345678901234567890123456789;
|
address payable b = payable(0x0123456789012345678901234567890123456789);
|
||||||
b = 0x9876543210987654321098765432109876543210;
|
b = payable(0x9876543210987654321098765432109876543210);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
contract C {
|
||||||
|
function f() public pure {
|
||||||
|
address payable a = address(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError 9574: (52-82): Type address is not implicitly convertible to expected type address payable.
|
@ -41,7 +41,7 @@ contract C
|
|||||||
// TypeError 9640: (183-213): Explicit type conversion not allowed from "uint16" to "int8".
|
// TypeError 9640: (183-213): Explicit type conversion not allowed from "uint16" to "int8".
|
||||||
// TypeError 9640: (270-277): Explicit type conversion not allowed from "uint16" to "int8".
|
// TypeError 9640: (270-277): Explicit type conversion not allowed from "uint16" to "int8".
|
||||||
// TypeError 9640: (300-329): Explicit type conversion not allowed from "uint256" to "address".
|
// TypeError 9640: (300-329): Explicit type conversion not allowed from "uint256" to "address".
|
||||||
// TypeError 9640: (349-365): Explicit type conversion not allowed from "address payable" to "uint256".
|
// TypeError 9640: (349-365): Explicit type conversion not allowed from "address" to "uint256".
|
||||||
// TypeError 9640: (421-431): Explicit type conversion not allowed from "uint256" to "address".
|
// TypeError 9640: (421-431): Explicit type conversion not allowed from "uint256" to "address".
|
||||||
// TypeError 9640: (452-471): Explicit type conversion not allowed from "bytes10" to "int80".
|
// TypeError 9640: (452-471): Explicit type conversion not allowed from "bytes10" to "int80".
|
||||||
// TypeError 9640: (493-511): Explicit type conversion not allowed from "int80" to "bytes10".
|
// TypeError 9640: (493-511): Explicit type conversion not allowed from "int80" to "bytes10".
|
||||||
|
Loading…
Reference in New Issue
Block a user