simplify testing

This commit is contained in:
Ivan Socolsky 2015-06-15 09:45:43 -03:00
parent 0e0da99741
commit e349a10a67
2 changed files with 2 additions and 2 deletions

View File

@ -797,7 +797,7 @@ WalletService.prototype.createTx = function(opts, cb) {
return cb(new ClientError('Required argument missing'));
var feePerKb = opts.feePerKb || 10000;
if (!_.contains([1000, 5000, 10000], feePerKb))
if (feePerKb > 10000)
return cb(new ClientError('Invalid fee per KB value'));
self._runLocked(cb, function(cb) {

View File

@ -216,7 +216,7 @@ helpers.createAddresses = function(server, wallet, main, change, cb) {
var storage, blockchainExplorer;
var useMongo = true;
var useMongo = false;
function initStorage(cb) {
function getDb(cb) {