Skip to content

style: Cosmetic fixes #141

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

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ data/
.idea
.env
certs/
/chainlink_config/tempkeys
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removing these keys ( - I think, didn't test ist recently - ) might result in the chainlink node creating new ones, so it probably will not work with the preloaded addresses on the sidechain. The chainlink node wont have any funds on its new address and then can't create transactions. Unless these keys are also in the database file, shared to the chainlink container, then it might still work without these key files.
The crosschain chainlink e2e workflow needs to be tested without these files before removing them, I will try to do this today before my holiday...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@samt1803 This isn't urgent, just like the title says

This file was deleted.

This file was deleted.

5 changes: 2 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ services:
timeout: 10s
retries: 60
chainlink:
container_name: streamr-dev-chainlink-node
container_name: streamr-dev-chainlink
image: smartcontract/chainlink:0.10.5
ports:
- '6688:6688'
Expand All @@ -478,7 +478,7 @@ services:
timeout: 10s
retries: 60
chainlink-external-adapter:
container_name: streamr-dev-chainlink-adapter
container_name: streamr-dev-chainlink-external-adapter
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this breaks the chainlink workflow because it is linked directly to the container, instead of 10.200.10.1. I created a ticket to fix this: https://linear.app/streamr/issue/ETH-155

image: streamr/chainlink-external-adapter:dev
ports:
- 6691:8080
Expand Down Expand Up @@ -511,7 +511,6 @@ networks:
volumes:
mysql_init_scripts:
cassandra_init_scripts:
cassandra_init_scripts:
data-bridge-data-rabbitmq:
data-bridge-data-redis:
data-mysql:
Expand Down