diff --git a/test/test.Wallet.js b/test/test.Wallet.js index 983cfc076..e55128119 100644 --- a/test/test.Wallet.js +++ b/test/test.Wallet.js @@ -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();