Fix: Missing payable at function forceOwnerChange

forceOwnerChange expects ether, and does not have the payable keyword.
This commit is contained in:
Matías A. Ré Medina 2018-03-19 16:38:20 -03:00 committed by GitHub
parent 2b2527f31c
commit 6e730df036
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -194,6 +194,7 @@ restrictions highly readable.
function forceOwnerChange(address _newOwner)
public
payable
costs(200 ether)
{
owner = _newOwner;