mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-06 14:56:54 +02:00
Fix missing semicolon
This commit is contained in:
@@ -494,7 +494,7 @@ Coin.LogSent().watch({}, '', function(error, result) {
|
|||||||
// '_' (underscore) often included as last line in body, and indicates
|
// '_' (underscore) often included as last line in body, and indicates
|
||||||
// function being called should be placed there
|
// function being called should be placed there
|
||||||
modifier onlyAfter(uint _time) { require (now >= _time); _; }
|
modifier onlyAfter(uint _time) { require (now >= _time); _; }
|
||||||
modifier onlyOwner { require(msg.sender == owner) _; }
|
modifier onlyOwner { require(msg.sender == owner); _; }
|
||||||
// commonly used with state machines
|
// commonly used with state machines
|
||||||
modifier onlyIfStateA (State currState) { require(currState == State.A) _; }
|
modifier onlyIfStateA (State currState) { require(currState == State.A) _; }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user