Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: incorrect reference to the variable #544

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion scripts/check-mailbox-hooks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ for chain_dir in chains/*/; do

# Check if addresses.yaml has a fallbackRoutingHook entry
fallback_routing_hook=$(yq e '.fallbackRoutingHook' "$addresses_file")
if [ "$merkle_tree_hook" = "null" ]; then
if [ "$fallback_routing_hook" = "null" ]; then
echo "$chain_name: No address for fallbackRoutingHook, skipping."
continue
fi
Expand Down