settings: fix tests 2

This commit is contained in:
Manuel Araoz 2014-09-10 13:56:49 -07:00
commit 28dff691fd
2 changed files with 15 additions and 12 deletions

View file

@ -9,6 +9,7 @@ var log = require('../../log');
var Async = module.exports.Async = require('../network/Async');
var Insight = module.exports.Insight = require('../blockchain/Insight');
var StorageLocalEncrypted = module.exports.StorageLocalEncrypted = require('../storage/LocalEncrypted');
var preconditions = require('preconditions').singleton();
/**
* @desc
@ -186,8 +187,9 @@ WalletFactory.prototype.read = function(walletId, skipFields) {
* @return {Wallet}
*/
WalletFactory.prototype.create = function(opts) {
preconditions.checkArgument(opts);
preconditions.checkArgument(opts.networkName);
opts = opts || {};
opts.networkName = opts.networkName || 'testnet';
log.debug('### CREATING NEW WALLET.' + (opts.id ? ' USING ID: ' + opts.id : ' NEW ID') + (opts.privateKey ? ' USING PrivateKey: ' + opts.privateKey.getId() : ' NEW PrivateKey'));

File diff suppressed because one or more lines are too long