Skip to content

Commit

Permalink
Dont test for l3 tx if no l3node
Browse files Browse the repository at this point in the history
  • Loading branch information
yahgwai committed Sep 2, 2024
1 parent 432f0ee commit a809fee
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/testnode.bash
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ if [ $? -ne 0 ]; then
exit 1
fi


START=$(date +%s)
L2_TRANSACTION_SUCCEEDED=false
L3_TRANSACTION_SUCCEEDED=false
L3_TRANSACTION_SUCCEEDED=true
for arg in "$@"; do
if [ "$arg" = "--l3node" ]; then
L3_TRANSACTION_SUCCEEDED=false
fi
done
SUCCEEDED=false

while true; do
Expand Down

0 comments on commit a809fee

Please sign in to comment.