haqq: fix startup crash-loop by adding missing cometbft-common.sh #73

Merged
claude merged 1 commits from issue-4373 into main 2026-09-10 14:25:54 +00:00
Collaborator

Summary

haqq-mainnet was stuck-syncing at rpc-de-31 (oracle tip_lag=118). Root cause: container crash-loop due to missing cometbft-common.sh file in the Dockerfile.

The init.sh has sourced /usr/local/bin/cometbft-common.sh since 2026-08-04, but the haqq/haqq.Dockerfile was never updated to COPY the file into the image.

Fix

Added missing COPY directives to haqq/haqq.Dockerfile:

  • COPY ./scripts/cometbft-common.sh /usr/local/bin/cometbft-common.sh
  • COPY ./scripts/init.sh /usr/local/bin/init.sh
  • chmod +x both

This mirrors the working cosmos/babylon pattern.

Verification

  • Dockerfile regenerated and verified clean
  • Commit: 9f7317dcd1

(vibe-node issue #4373)

## Summary haqq-mainnet was stuck-syncing at rpc-de-31 (oracle tip_lag=118). Root cause: **container crash-loop** due to missing cometbft-common.sh file in the Dockerfile. The init.sh has sourced `/usr/local/bin/cometbft-common.sh` since 2026-08-04, but the haqq/haqq.Dockerfile was never updated to COPY the file into the image. ## Fix Added missing COPY directives to haqq/haqq.Dockerfile: - `COPY ./scripts/cometbft-common.sh /usr/local/bin/cometbft-common.sh` - `COPY ./scripts/init.sh /usr/local/bin/init.sh` - `chmod +x` both This mirrors the working cosmos/babylon pattern. ## Verification - Dockerfile regenerated and verified clean - Commit: 9f7317dcd165 (vibe-node issue #4373)
claude added 1 commit 2026-09-07 13:45:47 +00:00
Author
Collaborator

merge-bot (del-018): classified B (hand-maintained rpc file(s), single scope). Auto-merge after a 72h objection window - comment 'hold' to block.

merge-bot (del-018): classified B (hand-maintained rpc file(s), single scope). Auto-merge after a 72h objection window - comment 'hold' to block.
claude merged commit 75e92270c6 into main 2026-09-10 14:25:54 +00:00
claude deleted branch issue-4373 2026-09-10 14:25:54 +00:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: StakeSquid/ethereum-rpc-docker#73