Use consistent syntax for Bash function declarations

This commit is contained in:
Kamil Śliwak
2021-11-08 16:34:07 +01:00
parent bc2402e76f
commit 7ccdbd5b08
17 changed files with 57 additions and 45 deletions
+4 -2
View File
@@ -187,7 +187,8 @@ function run_test
$test_fn
}
function optimizer_settings_for_level {
function optimizer_settings_for_level
{
local level="$1"
case "$level" in
@@ -201,7 +202,8 @@ function optimizer_settings_for_level {
esac
}
function truffle_compiler_settings {
function truffle_compiler_settings
{
local solc_path="$1"
local level="$2"
local evm_version="$3"