Fix missing semicolon

This commit is contained in:
Al 2022-07-25 10:54:32 +02:00 committed by GitHub
parent 814f3dbc98
commit 23be2f300c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -496,7 +496,7 @@ Coin.LogSent().watch({}, '', function(error, result) {
modifier onlyAfter(uint _time) { require (now >= _time); _; }
modifier onlyOwner { require(msg.sender == owner); _; }
// commonly used with state machines
modifier onlyIfStateA (State currState) { require(currState == State.A) _; }
modifier onlyIfStateA (State currState) { require(currState == State.A); _; }
// Append right after function declaration
function changeOwner(newOwner)