fixed issue with broadcasting tx

This commit is contained in:
sairaj mote 2024-01-02 09:58:07 +05:30
parent 74def25d14
commit f09870bf3a
2 changed files with 1 additions and 2 deletions

View File

@ -1119,7 +1119,6 @@
options.sendingTx = true;
return new Promise((resolve, reject) => {
createSignedTx(senders, privkeys, receivers, amounts, fee, options).then(result => {
return
broadcastTx(result.transaction.serialize())
.then(txid => resolve(txid))
.catch(error => reject(error));

File diff suppressed because one or more lines are too long