From 151d1a80a066931ee90ca7c3467223ef889e1a67 Mon Sep 17 00:00:00 2001 From: Alexander Blair Date: Sat, 11 Feb 2017 12:04:21 -0800 Subject: [PATCH] Making the wallet stats error more verbose. --- lib/worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/worker.js b/lib/worker.js index ad47ba1..cc0268b 100644 --- a/lib/worker.js +++ b/lib/worker.js @@ -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');