Fix accounts.setKeypair undefined return value

This commit is contained in:
Jonathan Otto 2016-11-15 15:14:52 -08:00 committed by GitHub
parent a52e2aeb8e
commit 73f6cd5ab2
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ module.exports.create = function (options) {
};
*/
cb(null, memDb.accounts[accountId]);
cb(null, memDb.accountKeypairs[accountId]);
}
// Accounts
, checkKeypair: function (opts, cb) {