Making the wallet stats error more verbose.

This commit is contained in:
Alexander Blair 2017-02-11 12:04:21 -08:00
parent 9ffbadd145
commit 151d1a80a0

View file

@ -455,7 +455,7 @@ function updateWalletStats() {
}
], function (err, results) {
if (err) {
return console.error(err);
return console.error("Unable to get wallet stats: " + results);
}
global.database.setCache('walletStateInfo', results);
let history = global.database.getCache('walletHistory');