feat: chain upgrade 29#49
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the image tags for the rise-exec and rise-node services in the docker-compose.yml file. Feedback indicates that the hardcoded --identity flag for the rise-exec service may now be outdated and should be updated or removed to ensure consistency with the new image version.
| services: | ||
| rise-exec: | ||
| image: public.ecr.aws/risechain/risechain-public/rise-exec/node:sha-624a411 | ||
| image: public.ecr.aws/risechain/risechain-public/rise-exec/node:sha-f97ed60 |
There was a problem hiding this comment.
The update of the rise-exec image to sha-f97ed60 makes the hardcoded --identity flag in the service command (line 30) outdated. The current identity string rise-4f9b653/reth-main-8367ba4/linux-aarch64 references an older commit hash (4f9b653). Consider updating this flag to reflect the new version or removing it entirely to allow the node to use its default identity, which typically includes the correct version and architecture information.
Proposal PR: https://github.com/risechain/devops/pull/592