Skip to content

no-hardcoded-gas

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 }();
}
}