warning | layout | title |
---|---|---|
This is a dynamically generated file. Do not edit manually. |
default |
avoid-low-level-calls | Solhint |
The {"extends": "solhint:recommended"} property in a configuration file enables this rule.
Avoid to use low level calls.
This rule accepts a string option of rule severity. Must be one of "error", "warn", "off". Default to warn.
{
"rules": {
"avoid-low-level-calls": "warn"
}
}
msg.sender.call(code);
a.callcode(test1);
a.delegatecall(test1);
This rule was introduced in Solhint 1.1.6