From 386723eea0b46ea3482b0d025669ccbb31fc5c66 Mon Sep 17 00:00:00 2001 From: Vivek Teega Date: Sun, 6 Oct 2024 13:05:18 +0530 Subject: [PATCH] Removing debugger line --- scripts/btcOperator.js | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/btcOperator.js b/scripts/btcOperator.js index d452bf4..fba0094 100644 --- a/scripts/btcOperator.js +++ b/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));