Post
Topic
Board Announcements (Altcoins)
Re: RISE | Building Blockchain Based App Development Environments
by
hagie
on 05/08/2016, 11:31:51 UTC
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 ?

Code:
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