You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you do a quick grep1 on the project for the word secrets, as of commit 92fb03f, you will see the following output (some have already some changes I'm doing):
As you can see, we are trying to access rinkeby|ropsten.mnemonic and demoAccounts from secrets, even though those are not documented or shown in the documentation. I imagine those are some legacy variables, but might be related to #1 on why I can't get the demo to work.
Probably worth adding those to the documentation and/or expanding the logic behind those. All of those have fallbacks so they don't break the project, but we should at least escape rinkeby|ropsten.mnemonic as they will fail with the current provided .secrets.json example.
grep -rni secrets . --exclude-dir=node_modules.
The text was updated successfully, but these errors were encountered:
If you do a quick
grep
1 on the project for the wordsecrets
, as of commit 92fb03f, you will see the following output (some have already some changes I'm doing):Particularly I want to bring your attention to the following lines:
in truffle.js
in test/utils/index.js
in hopr.js
As you can see, we are trying to access
rinkeby|ropsten.mnemonic
anddemoAccounts
from secrets, even though those are not documented or shown in the documentation. I imagine those are some legacy variables, but might be related to #1 on why I can't get the demo to work.Probably worth adding those to the documentation and/or expanding the logic behind those. All of those have fallbacks so they don't break the project, but we should at least escape
rinkeby|ropsten.mnemonic
as they will fail with the current provided.secrets.json
example.grep -rni secrets . --exclude-dir=node_modules
.The text was updated successfully, but these errors were encountered: