Browse Source

version bump

v0.25
pbca26 7 years ago
parent
commit
0b0ac95e92
  1. 5
      main.js
  2. 6
      routes/electrumjs/electrumjs.networks.js
  3. 2
      routes/shepherd.js
  4. 6
      routes/shepherd/dashboardUpdate.js
  5. 4
      version
  6. 2
      version_build

5
main.js

@ -90,7 +90,7 @@ shepherd.log(`app started in ${(appConfig.dev ? 'dev mode' : ' user mode')}`);
shepherd.writeLog(`app started in ${(appConfig.dev ? 'dev mode' : ' user mode')}`);
shepherd.setConfKMD();
shepherd.setConfKMD('CHIPS');
// shepherd.setConfKMD('CHIPS');
guiapp.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', appConfig.dev ? '*' : 'http://127.0.0.1:3000');
@ -116,8 +116,7 @@ process.once('loaded', () => {
copyright: 'Released under the MIT license',
credits: 'SuperNET Team',
});
}
if (osPlatform === 'linux') {
} else if (osPlatform === 'linux') {
process.setFdLimit(appConfig.maxDescriptors.linux);
}
});

6
routes/electrumjs/electrumjs.networks.js

@ -15,8 +15,8 @@ networks.litecoin = {
pubKeyHash: 0x30,
scriptHash: 0x32,
wif: 0xb0,
dustThreshold: 0, // https://github.com/litecoin-project/litecoin/blob/v0.8.7.2/src/main.cpp#L360-L365
}
dustThreshold: 0 // https://github.com/litecoin-project/litecoin/blob/v0.8.7.2/src/main.cpp#L360-L365
};
networks.dogecoin = {
messagePrefix: '\x19Dogecoin Signed Message:\n',
@ -27,7 +27,7 @@ networks.dogecoin = {
pubKeyHash: 0x1e,
scriptHash: 0x16,
wif: 0x9e,
dustThreshold: 0 // https://github.com/dogecoin/dogecoin/blob/v1.7.1/src/core.h#L155-L160
dustThreshold: 0, // https://github.com/dogecoin/dogecoin/blob/v1.7.1/src/core.h#L155-L160
};
// https://github.com/monacoinproject/monacoin/blob/master-0.10/src/chainparams.cpp#L161

2
routes/shepherd.js

@ -37,6 +37,8 @@ shepherd.rpcConf = {};
shepherd.appRuntimeLog = [];
shepherd.appRuntimeSPVLog = [];
shepherd.lockDownAddCoin = false;
// dex cache
shepherd.mmupass = null;
shepherd.mmRatesInterval = null;
shepherd.mmPublic = {

6
routes/shepherd/dashboardUpdate.js

@ -59,7 +59,8 @@ module.exports = (shepherd) => {
coin,
_type === 'public' ? 'getaddressesbyaccount' : 'z_listaddresses',
['']
).then((_json) => {
)
.then((_json) => {
if (_json === 'Work queue depth exceeded' ||
!_json) {
resolve({ error: 'daemon is busy' });
@ -110,6 +111,7 @@ module.exports = (shepherd) => {
return result[0].indexOf(elem) === pos;
});
}
if (result[1] &&
result[1].length) {
result[1] = result[1].filter((elem, pos) => {
@ -118,6 +120,7 @@ module.exports = (shepherd) => {
}
let newAddressArray = [];
for (let a = 0; a < result.length; a++) {
newAddressArray[a] = [];
@ -305,6 +308,7 @@ module.exports = (shepherd) => {
} else {
_returnObj[_call] = JSON.parse(json);
}
resolve(json);
});
});

4
version

@ -1,3 +1,3 @@
version=0.2.0.29b
type=b-beta
version=0.2.0.29c
type=c-beta
minversion=0.2.0.29

2
version_build

@ -1 +1 @@
0.2.0.29b-beta
0.2.0.29c-beta
Loading…
Cancel
Save