Solving conflicts

This commit is contained in:
Matias Pando 2014-09-11 11:30:55 -03:00
parent e819073003
commit 2a4b054ba1
1 changed files with 0 additions and 17 deletions

View File

@ -829,23 +829,6 @@ describe('Wallet model', function() {
});
});
describe('#createTxSync', function() {
it('should fail if amount below min value', function() {
var w = cachedCreateW2();
var utxo = createUTXO(w);
var badCreate = function() {
w.createTxSync(
'mgGJEugdPnvhmRuFdbdQcFfoFLc1XXeB79',
'123',
null,
utxo
);
}
chai.expect(badCreate).to.throw('invalid amount');
});
});
describe('removeTxWithSpentInputs', function() {
it('should remove pending TxProposal with spent inputs', function(done) {
var w = cachedCreateW2();