fix identation and some linter warnings

This commit is contained in:
Mikhail Melnik
2019-01-28 22:04:50 +03:00
parent b39f3c2055
commit 05c7d8c861
8 changed files with 13 additions and 10 deletions

View File

@ -40,7 +40,7 @@ contract MessageHelper {
}
function call(address _to, bytes memory _data) public returns (bool) {
// solium-disable-next-line security/no-low-level-calls
// solhint-disable-next-line security/avoid-low-level-calls
(bool success,) = _to.call(_data);
if (success)
return true;