-
Notifications
You must be signed in to change notification settings - Fork 6
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
style: Cosmetic fixes #141
base: master
Are you sure you want to change the base?
Conversation
kare
commented
Sep 3, 2021
•
edited
Loading
edited
- Add chainlink_cofig/tempkeys to .gitignore
- Unify chainlink naming
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removing the keys might break things, I will try to test this today, a better fix might be to rename tempkeys to keys.
@@ -2,3 +2,4 @@ data/ | |||
.idea | |||
.env | |||
certs/ | |||
/chainlink_config/tempkeys |
There was a problem hiding this comment.
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...
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes currently break the chainlink workflow. https://linear.app/streamr/issue/ETH-155 needs to be done first, then this PR can be revisited.
(The workflow also needs to be run in an integrationtest by the github CI: the ticket is, https://linear.app/streamr/issue/ETH-137)
@@ -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 |
There was a problem hiding this comment.
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