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