Merge pull request #1564 from CrypticaScriptura/local-node-env-fix

LAM-920 fix: define all node locations in .env
This commit is contained in:
Rafael Taranto 2023-08-02 10:56:23 +01:00 committed by GitHub
commit 27efded1a3

View file

@ -44,6 +44,16 @@ setEnvVariable('OFAC_SOURCES_URLS', 'https://www.treasury.gov/ofac/downloads/san
setEnvVariable('BTC_NODE_LOCATION', 'local')
setEnvVariable('BTC_WALLET_LOCATION', 'local')
setEnvVariable('BCH_NODE_LOCATION', 'local')
setEnvVariable('BCH_WALLET_LOCATION', 'local')
setEnvVariable('LTC_NODE_LOCATION', 'local')
setEnvVariable('LTC_WALLET_LOCATION', 'local')
setEnvVariable('DASH_NODE_LOCATION', 'local')
setEnvVariable('DASH_WALLET_LOCATION', 'local')
setEnvVariable('ZEC_NODE_LOCATION', 'local')
setEnvVariable('ZEC_WALLET_LOCATION', 'local')
setEnvVariable('XMR_NODE_LOCATION', 'local')
setEnvVariable('XMR_WALLET_LOCATION', 'local')
setEnvVariable('HOSTNAME', `${argv.hostname}`)
setEnvVariable('LOG_LEVEL', 'info')