no-hardcoded-gas
Disallows hardcoded gas values in call options.
Rule details
Section titled “Rule details”Examples of incorrect code for this rule:
contract Example { function f(C c) public { c.g{ gas: 100000 }(); }}Disallows hardcoded gas values in call options.
Examples of incorrect code for this rule:
contract Example { function f(C c) public { c.g{ gas: 100000 }(); }}