mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix: Missing payable at function forceOwnerChange
forceOwnerChange expects ether, and does not have the payable keyword.
This commit is contained in:
parent
2b2527f31c
commit
6e730df036
@ -194,6 +194,7 @@ restrictions highly readable.
|
|||||||
|
|
||||||
function forceOwnerChange(address _newOwner)
|
function forceOwnerChange(address _newOwner)
|
||||||
public
|
public
|
||||||
|
payable
|
||||||
costs(200 ether)
|
costs(200 ether)
|
||||||
{
|
{
|
||||||
owner = _newOwner;
|
owner = _newOwner;
|
||||||
|
Loading…
Reference in New Issue
Block a user