Commit 5133f8db authored by Eriksson Monteiro's avatar Eriksson Monteiro

update millix ui and millix-node

parent d24620c6
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -475,13 +475,16 @@ class WalletUtils {
return reject('couldn\'t read node key');
}
data = JSON.parse(data);
if (data.key) {
return resolve(new Bitcore.HDPrivateKey(data.key));
try {
data = JSON.parse(data);
if (data.key) {
return resolve(new Bitcore.HDPrivateKey(data.key));
}
}
else {
return reject('couldn\'t read node key');
catch (e) {
}
return reject('couldn\'t read node key');
});
});
}
......
......@@ -125,5 +125,5 @@ db.initialize()
});
}
});
//millix v1.18.0-tangled
//millix v1.18.0-tangled
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment