diff --git a/flopay/scripts/btcOperator.js b/flopay/scripts/btcOperator.js index d452bf4..fba0094 100644 --- a/flopay/scripts/btcOperator.js +++ b/flopay/scripts/btcOperator.js @@ -671,7 +671,6 @@ btcOperator.sendTx = function (senders, privkeys, receivers, amounts, fee = null, options = {}) { return new Promise((resolve, reject) => { createSignedTx(senders, privkeys, receivers, amounts, fee, options).then(result => { - debugger; broadcastTx(result.transaction.serialize()) .then(txid => resolve(txid)) .catch(error => reject(error));