remove unused broadcast stub

This commit is contained in:
Ivan Socolsky 2015-02-26 10:46:53 -03:00
parent eabdd4f35a
commit 52896dfb7f
1 changed files with 1 additions and 1 deletions

View File

@ -1267,7 +1267,6 @@ describe('Copay server', function() {
server.createTx(txOpts, function(err, txp) {
should.not.exist(err);
should.exist(txp);
helpers.stubBroadcastFail();
var signatures = helpers.clientSign(txp, TestData.copayers[0].xPrivKey);
server.signTx({
txProposalId: txp.id,
@ -1276,6 +1275,7 @@ describe('Copay server', function() {
should.not.exist(err);
should.exist(txp);
txp.isAccepted().should.be.true;
txp.isBroadcasted().should.be.false;
txpid = txp.id;
done();
});