From e07f9b737c79b712dd59b971d57fb5de1861dc58 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 6 Nov 2016 09:48:56 -0800 Subject: [PATCH] walletdb: fix getAccounts. --- lib/wallet/walletdb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet/walletdb.js b/lib/wallet/walletdb.js index bd6131b9..5bdc35b3 100644 --- a/lib/wallet/walletdb.js +++ b/lib/wallet/walletdb.js @@ -979,7 +979,7 @@ WalletDB.prototype.getAccounts = function getAccounts(wid) { parse: function(data) { return data.toString('ascii'); } - } + }); }; /**