Hi all,
I configured port 4242 for the rise wallet. The Wallet didn't honor the setting from the config and I found these lines in the app.js which override the config.json.
is this the intended behavior ?
if (process.env.NODE_ENV != 'production') {
appConfig.port = 4444
} else
if (program.port) {
appConfig.port = program.port;
}
if (program.address) {
appConfig.address = program.address;
}
if (process.env.NODE_ENV != 'production') {
appConfig.port = 4444
}
regards