Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SpontaneousOverthrow committed Nov 22, 2023
1 parent bb4f93e commit 5025d55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/func-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5025d55

Please sign in to comment.