From 73f6cd5ab2a428bc2f8a24a9149006167a424a73 Mon Sep 17 00:00:00 2001 From: Jonathan Otto Date: Tue, 15 Nov 2016 15:14:52 -0800 Subject: [PATCH] Fix accounts.setKeypair undefined return value --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 4d27cf3..267779c 100644 --- a/index.js +++ b/index.js @@ -57,7 +57,7 @@ module.exports.create = function (options) { }; */ - cb(null, memDb.accounts[accountId]); + cb(null, memDb.accountKeypairs[accountId]); } // Accounts , checkKeypair: function (opts, cb) {