diff --git a/.github/workflows/func-tests.yaml b/.github/workflows/func-tests.yaml index 4d2354d..241bb3a 100644 --- a/.github/workflows/func-tests.yaml +++ b/.github/workflows/func-tests.yaml @@ -65,11 +65,11 @@ jobs: echo -e "# Checking Public Keys" wallets_list=$(ethdo wallet --base-dir "$input_path" | tr '\n' ' ') - for w in wallets_list; do - echo -e "# Checking Wallet $w" + for w in $wallets_list; do + echo -e "# Getting accounts for wallet: $w" accounts=$(ethdo wallet --base-dir "$input_path" accounts --wallet="$w" | tr '\n' ' ') for a in $accounts; do - echo -e "# Checking Wallet $a" + echo -e "# Checking Account: $a" input_key=$(ethdo account --base-dir "$input_path" info --account "$w/$a" | grep -i "$input_grep" | awk '{print $NF}') output_key=$(ethdo account --base-dir "$output_path" info --account "$w/$a" | grep -i "$output_grep" | awk '{print $NF}') if [[ $input_key != $output_key ]]; then