UNPKG

@slippy-lint/slippy

Version:

A simple but powerful linter for Solidity

18 lines (12 loc) 220 B
# no-tx-origin Forbids the use of `tx.origin`. ## Rule details Examples of **incorrect** code for this rule: ```solidity contract Example { address public owner; constructor() { owner = tx.origin; } } ```