Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 436 Bytes

File metadata and controls

13 lines (7 loc) · 436 Bytes

Avoiding Common Attacks

SWC-104 (Unchecked Call Return Value)

The return value from a call to the ticket owner's address in cancelTicket is checked with require to ensure transaction rollback if call fails.

SWC-105 (Unprotected Ether Withdrawal)

withdraw is protected with OpenZeppelin Ownable's onlyOwner modifier.

SWC-107 (Reentrancy)

Perform internal state change in cancelTicket before making the call.